[python] 백준 11021 A + B -7

rse·2022년 11월 24일
0

알고리즘

목록 보기
8/44
post-thumbnail
post-custom-banner

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

문제는 아까와 비슷한 문제이다.
다만 Case #x : 를 추가해서 출력해야한다.

import sys

t = inp(input())
c = 1

for i in range(t):
	a, b = map(int, sys.stdin.readline().split())
    print("Case #{0}:".format(c), a + b)
    c += 1

profile
기록을 합시다

0개의 댓글