100 #ABC143A. [ABC143A] Curtain

[ABC143A] Curtain

Score : 100100 points

Problem Statement

The window of Takahashi's room has a width of AA. There are two curtains hung over the window, each of which has a horizontal length of BB. (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

  • 1A1001 \leq A \leq 100
  • 1B1001 \leq B \leq 100
  • AA and BB are integers.

Input

Input is given from Standard Input in the following format:

AA BB

Output

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

12 4
4

We have a window with a horizontal length of 1212, and two curtains, each of length 44, that cover both ends of the window, for example. The uncovered part has a horizontal length of 44.

20 15
0

If the window is completely covered, print 00.

20 30
0

Each curtain may be longer than the window.