#D10555. Tozan and Gezan

    ID: 8771 Type: Default 2000ms 268MiB

Tozan and Gezan

Tozan and Gezan

You are given sequences A and B consisting of non-negative integers. The lengths of both A and B are N, and the sums of the elements in A and B are equal. The i-th element in A is A_i, and the i-th element in B is B_i.

Tozan and Gezan repeats the following sequence of operations:

  • If A and B are equal sequences, terminate the process.
  • Otherwise, first Tozan chooses a positive element in A and decrease it by 1.
  • Then, Gezan chooses a positive element in B and decrease it by 1.
  • Then, give one candy to Takahashi, their pet.

Tozan wants the number of candies given to Takahashi until the process is terminated to be as large as possible, while Gezan wants it to be as small as possible. Find the number of candies given to Takahashi when both of them perform the operations optimally.

Constraints

  • 1 \leq N \leq 2 × 10^5
  • 0 \leq A_i,B_i \leq 10^9(1\leq i\leq N)
  • The sums of the elements in A and B are equal.
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

N A_1 B_1 : A_N B_N

Output

Print the number of candies given to Takahashi when both Tozan and Gezan perform the operations optimally.

Examples

Input

2 1 2 3 2

Output

2

Input

3 8 3 0 1 4 8

Output

9

Input

1 1 1

Output

0

inputFormat

input are integers.

Input

Input is given from Standard Input in the following format:

N A_1 B_1 : A_N B_N

outputFormat

Output

Print the number of candies given to Takahashi when both Tozan and Gezan perform the operations optimally.

Examples

Input

2 1 2 3 2

Output

2

Input

3 8 3 0 1 4 8

Output

9

Input

1 1 1

Output

0

样例

3
8 3
0 1
4 8
9