짱해커가 되어보자

boj 9295 본문

프로그래밍_일반/백준

boj 9295

Spadework 2020. 2. 6. 11:14

* Solved 기준 브론즈3 단순 풀이

for i in range(int(input())):
	print('Case {}: {}'.format(i+1, sum(map(int, input().split()))))

 

'프로그래밍_일반 > 백준' 카테고리의 다른 글

boj 11006  (0) 2020.02.06
boj 10178  (0) 2020.02.06
boj 14581  (0) 2020.02.06
boj 1267  (0) 2020.02.06
boj 5354  (0) 2020.02.06
Comments