보안을 그리다, 훈이

[Baekjoon/Python3] 11021번 A+B - 7 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 11021번 A+B - 7

HooNeee 2020. 12. 7. 00:13

[Baekjoon/Python3] 11021번 A+B - 7

 

www.acmicpc.net/problem/11021

 

11021번: A+B - 7

각 테스트 케이스마다 "Case #x: "를 출력한 다음, A+B를 출력한다. 테스트 케이스 번호는 1부터 시작한다.

www.acmicpc.net

 

T = int(input())
for i in range(1, T + 1):
    A, B = map(int, input().split())
    sum = A + B
    print('Case #' + str(i) + ': ' + str(sum))
Comments