Programming/Python & Data Structures
[Baekjoon/Python3] 14918번 더하기
HooNeee
2020. 12. 8. 16:23
[Baekjoon/Python3] 14918번 더하기
14918번: 더하기
a b; a와 b는 -100,000과 100,000 사이의 정수이다.
www.acmicpc.net
import sys
a, b = map(int, sys.stdin.readline().split())
print(a + b)