import numpy as np N = int(input()) AB = np.array(tuple(tuple(map(int, input().split())) for _ in range(N - 1))) a1_max = np.sum(AB[:, 1]) b1_max = np.sum(AB[:, 0]) other_sum_max = np.max(np.sum(AB, axis=1)) a1_min = max(0, other_sum_max - b1_max) b1_min = max(0, other_sum_max - a1_max) print(min(a1_max - a1_min, b1_max - b1_min) + 1)