[파이썬] 11022번:A+B-8

김충섭·2021년 5월 29일
0

백준

목록 보기
20/39
post-thumbnail

# 작성자: 김충섭(kchs94)

import sys #readline 가져오기

T = int(input()) 

for i in range(T):
    A, B = map(int, sys.stdin.readline().split()) # 여러 번 입력을 받을 땐 readline()
    print("Case #{0}: {1} + {2} = {3}".format(i+1, A, B, A+B))
profile
나를 위한 개발블로그

0개의 댓글