보안을 그리다, 훈이

[Baekjoon/Python3] 14918번 더하기 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 14918번 더하기

HooNeee 2020. 12. 8. 16:23

[Baekjoon/Python3] 14918번 더하기

 

www.acmicpc.net/problem/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)
Comments