보안을 그리다, 훈이

[Baekjoon/Python3] 10953번 A + B - 6 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 10953번 A + B - 6

HooNeee 2020. 12. 6. 18:44

[Baekjoon/Python3] 10953번 A + B - 6

 

www.acmicpc.net/problem/10953

 

10953번: A+B - 6

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

www.acmicpc.net

 

import sys
t = int(sys.stdin.readline())
for i in range(t):
    a, b = map(int, sys.stdin.readline().split(','))    # split(sep = ',', maxsplit = 1)
    sys.stdout.write(str(a + b) + '\n')     # sys.stdout.write(!!!str!!!'\n'!!!)
Comments