#D9638. Curtain

    ID: 8014 Type: Default 2000ms 1073MiB

Curtain

Curtain

The window of Takahashi's room has a width of A. There are two curtains hung over the window, each of which has a horizontal length of B. (Vertically, the curtains are long enough to cover the whole window.)

We will close the window so as to minimize the total horizontal length of the uncovered part of the window. Find the total horizontal length of the uncovered parts of the window then.

Constraints

  • 1 \leq A \leq 100
  • 1 \leq B \leq 100
  • A and B are integers.

Input

Input is given from Standard Input in the following format:

A B

Output

Print the total horizontal length of the uncovered parts of the window.

Examples

Input

12 4

Output

4

Input

20 15

Output

0

Input

20 30

Output

0

inputFormat

Input

Input is given from Standard Input in the following format:

A B

outputFormat

Output

Print the total horizontal length of the uncovered parts of the window.

Examples

Input

12 4

Output

4

Input

20 15

Output

0

Input

20 30

Output

0

样例

20 30
0