파이썬/백준
10569번 : 다면체
L_SU
2022. 6. 14. 19:22
# 다면체
n=int(input())
for _ in range(n):
V, E=map(int, input().split())
print(E-V+2)