-
10951_Python // A+B -4IT_Baekjoon 단계별로 풀어보기/While문 2020. 1. 6. 17:56
Python
import sys while(True) : try : a,b = map(int,sys.stdin.readline().split()) print(a+b) except : break;
===
'IT_Baekjoon 단계별로 풀어보기 > While문' 카테고리의 다른 글
1110_Python // 더하기 사이클 (0) 2020.01.06 10952_Python // A+B -5 (0) 2020.01.06