cool hamsters never sleep

백준 11022. A+B - 8 본문

Python Algorithm

백준 11022. A+B - 8

슈슈 susu 2022. 7. 15. 17:18
T = int(input())
for i in range (1, T+1) :
    A, B = map(int, input().split())
    print("Case #" + str(i) + ":", A, "+", B, "=", A+B)

'Python Algorithm' 카테고리의 다른 글

백준 2439. 별 찍기 - 2  (0) 2022.07.15
백준 2438. 별 찍기 - 1  (0) 2022.07.15
백준 11021. A+B - 7  (0) 2022.07.15
백준 2742. 기찍 N  (0) 2022.07.15
백준 2741. N 찍기  (0) 2022.07.15
Comments