-
11022_Python // A+B -8IT_Baekjoon 단계별로 풀어보기/for문 2020. 1. 5. 23:20

Python
import sys n = int(sys.stdin.readline()) for i in range(n) : a,b = map(int,sys.stdin.readline().split()) print("Case #%s: %s + %s = %s"%(i+1,a,b,a+b))===
'IT_Baekjoon 단계별로 풀어보기 > for문' 카테고리의 다른 글
2439_Python // 별 찍기 -2 (0) 2020.01.05 2438_Python // 별 찍기 -1 (0) 2020.01.05 11021_Python // A+B -7 (0) 2020.01.05 2742_Python // 기찍 N (0) 2020.01.05 2741_Python // N 찍기 (0) 2020.01.04