100 atcoder#ABC143A. [ABC143A] Curtain
[ABC143A] Curtain
Score : points
Problem Statement
The window of Takahashi's room has a width of . There are two curtains hung over the window, each of which has a horizontal length of . (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
- and are integers.
Input
Input is given from Standard Input in the following format:
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 , and two curtains, each of length , that cover both ends of the window, for example. The uncovered part has a horizontal length of .
20 15
0
If the window is completely covered, print .
20 30
0
Each curtain may be longer than the window.