nan + nan = 2nan

[백준] [Python3] #11022. A+B - 8 본문

Python/백준 알고리즘

[백준] [Python3] #11022. A+B - 8

2nan 2021. 8. 3. 21:20
728x90

 


코드 입력

T = int(input())

for i in range(1, T + 1):
    A, B = map(int, input().split())
    print('Case #%s: %s + %s = %s' % (i, A, B, A+B))

 11021번과 비슷한 포맷을 가져간다.

식 구성이 추가되었으니, 추가된 만큼 해당 변수에 %s를 추가해주면 간단s.

 


출처 : 백준 Online Judge

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

 

11022번: A+B - 8

각 테스트 케이스마다 "Case #x: A + B = C" 형식으로 출력한다. x는 테스트 케이스 번호이고 1부터 시작하며, C는 A+B이다.

www.acmicpc.net

 

Comments