n = int(input()) a_tot, b_tot = 0, 0 max_ = 0 for _ in range(n - 1): a, b = map(int, input().split()) a_tot += a b_tot += b max_ = max(max_, a + b) # それぞれの場合の数を計算するのがポイント # aが取り得る場合の数 max_a = b_tot min_a = max(0, max_ - a_tot) num_a = max_a - min_a + 1 # bが取り得る場合の数 max_b = a_tot min_b = max(0, max_ - b_tot) num_b = max_b - min_b + 1 print(min(num_a, num_b))