100 #ABC056B. [ABC056B] NarrowRectanglesEasy

[ABC056B] NarrowRectanglesEasy

Score : 200200 points

Problem Statement

AtCoDeer the deer found two rectangles lying on the table, each with height 11 and width WW. If we consider the surface of the desk as a two-dimensional plane, the first rectangle covers the vertical range of [0,1][0,1] and the horizontal range of [a,a+W][a,a+W], and the second rectangle covers the vertical range of [1,2][1,2] and the horizontal range of [b,b+W][b,b+W], as shown in the following figure:

AtCoDeer will move the second rectangle horizontally so that it connects with the first rectangle. Find the minimum distance it needs to be moved.

Constraints

  • All input values are integers.
  • 1W1051 \leq W \leq 10^5
  • 1a,b1051 \leq a,b \leq 10^5

Input

The input is given from Standard Input in the following format:

WW aa bb

Output

Print the minimum distance the second rectangle needs to be moved.

3 2 6
1

This input corresponds to the figure in the statement. In this case, the second rectangle should be moved to the left by a distance of 11.

3 1 3
0

The rectangles are already connected, and thus no move is needed.

5 10 1
4