표준입력 (stdin)
실행옵션 (runtime option)
코드:
실행 »
표준입력/실행옵션
def add(a, b): return a + b print(add(1, 2)) print((lambda a, b: a+b)(1, 2))