Search

2. 백준_Python [1000] A + B

A,B= input().split() print(int(A)+int(B))
Python
복사