보안을 그리다, 훈이

[Baekjoon/Python3] 2558번 A+B - 2 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 2558번 A+B - 2

HooNeee 2020. 12. 3. 02:05

[Baekjoon/Python3] 2558번 A+B - 2

 

www.acmicpc.net/problem/2558

 

2558번: A+B - 2

첫째 줄에 A, 둘째 줄에 B가 주어진다. (0 < A, B < 10)

www.acmicpc.net

 

import sys
a = int(sys.stdin.readline())
b = int(sys.stdin.readline())
sys.stdout.write(str(a + b))     # sys.stdout.write(!!!str!!!)
Comments