max = 0
current = 0
for i in range(10):
getOut, getIn = map(int, input().split())
current = current + getIn - getOut
if max < current:
max = current
print(max)
string의 list의 원소를 전부 int형으로 바꾸는 방식
numbers = list(map(int, input().split()))
이번 기회에 꼭 외우도록 하자
input().split()
map(int, input()) 까먹지말자!
list(map(int, input().split()))