백준 11022 (파이썬)

김덕현·2021년 5월 28일
1

BAEKJOON

목록 보기
24/62

1.문제

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

2.코드

import sys
t= int(input())
for i in range(1,t+1):
    a,b=map(int,sys.stdin.readline().split())
    print("Case #%d: %d + %d = %d"%(i,a,b,a+b))

3.코드해설

profile
BAEKJOON STUDYING

0개의 댓글