본문 바로가기
알고리즘/백준

[Python] 백준 11021번 - A+B - 7

by 소꿍 2020. 6. 9.

https://www.acmicpc.net/problem/11021

 

11021번: A+B - 7

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

www.acmicpc.net

 

import sys
for i, a in zip(range(1, int(input())+1), sys.stdin):
    print("Case #%d: %d" % (i, sum(map(int, a.split()))))

댓글