Introfor

1000번 본문

Programming_prob/BaekJoon

1000번

YongArtist 2019. 7. 5. 19:45

Problem


두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.

Input


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


Output


첫째 줄에 A+B를 출력한다.


Source Code

1
2
a, b = map(int, input().split())
print(a+b)
cs


Comments