728x90
반응형

11021번 A+B - 7과 똑같이 format을 잘 사용해주자.

for i in range(int(input())):
    n1, n2 = map(int, input().split())
    print("Case #{0}: {1} + {2} = {3}".format(i+1, n1, n2, n1+n2))

728x90
반응형

+ Recent posts