본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 32193번 승강장의 깊이

by 현장 2024. 9. 1.

-Code

from sys import stdin

total = 0

for _ in range(int(stdin.readline())):
    a, b = map(int, stdin.readline().split())
    total = a - b + total
    print(total)