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
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 11050번 이항 계수 1(python) (0) | 2020.02.16 |
---|---|
백준 알고리즘 11047번 동전 0(python) (0) | 2020.02.16 |
백준 알고리즘 11021번 A+B - 7(python) (0) | 2020.02.15 |
백준 알고리즘 11006번 남욱이의 닭장(python) (0) | 2020.02.15 |
백준 알고리즘 10988번 AxB(python) (0) | 2020.02.15 |