가오리의 코딩일기

[11021] A+B-7 본문

Python/백준

[11021] A+B-7

류경혜 2022. 5. 16. 14:10

t = int(input())
for i in range(1, t+1):
    a, b = map(int, input().split())
    print(f'Case #{i}: {a+b}')
    print('Case #{}: {}'.format(i, a+b))

 

 

 

'Python > 백준' 카테고리의 다른 글

[11718] 그대로 출력하기  (0) 2022.05.16
[11022] A+B-8  (0) 2022.05.16
[10953] A+B-6  (0) 2022.05.16
[10952] A+B-5  (0) 2022.05.16
[10951] A+B-4  (0) 2022.05.16