https://www.acmicpc.net/problem/10951
무한 루프안에서 try, except
구문으로 예외처리, EOFerror 발생 시 반복문을 빠져나온다.
while True:
try:
a, b = map(int, input().split())
print(a+b)
except EOFError:
break
sys.stdin.readlines()
를 사용하면 파일의 끝까지 한번에 가져올 수 있다.
import sys
lines = sys.stdin.readlines()
for line in lines:
a, b = map(int, line.split())
print(a+b)