새소식

⌨️ Algorithms/백준

[Python] 백준 11022번_A+B - 8

2022. 6. 29. 12:16

  • -

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

 

11022번: A+B - 8

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

www.acmicpc.net

 

import sys

T = int(input())

for i in range(T):
    A,B = map(int, sys.stdin.readline().split())
    C = A+B
    print('Case #{0}: {1} + {2} = {3}'.format(i+1, A, B, C))

 

'⌨️ Algorithms > 백준' 카테고리의 다른 글

[Python] 백준 2439번_별찍기 - 2  (0) 2022.06.30
[Python] 백준 2438번_별찍기 - 1  (0) 2022.06.30
[Python] 백준 11021번_A+B - 7  (0) 2022.06.29
[Python] 백준 2742번_기찍 N  (0) 2022.06.29
[Python] 백준 2741번_N 찍기  (0) 2022.06.29
Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다!