-
11021_Python // A+B -7IT_Baekjoon 단계별로 풀어보기/for문 2020. 1. 5. 23:15

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"%(i+1,a+b))===
'IT_Baekjoon 단계별로 풀어보기 > for문' 카테고리의 다른 글
2438_Python // 별 찍기 -1 (0) 2020.01.05 11022_Python // A+B -8 (0) 2020.01.05 2742_Python // 기찍 N (0) 2020.01.05 2741_Python // N 찍기 (0) 2020.01.04 15552_Python // 빠른 A+B (0) 2020.01.04