#D1630. Red Dragonfly

    ID: 1364 Type: Default 1000ms 268MiB

Red Dragonfly

Red Dragonfly

It’s still hot every day, but September has already come. It’s autumn according to the calendar. Looking around, I see two red dragonflies at rest on the wall in front of me. It’s autumn indeed.

When two red dragonflies’ positional information as measured from the end of the wall is given, make a program to calculate the distance between their heads.

Input

The input is given in the following format.

x1x_1 x2x_2

The input line provides dragonflies’ head positions x1x_1 and x2x_2 (0x1,x21000 \leq x_1, x_2 \leq 100) as integers.

Output

Output the distance between the two red dragonflies in a line.

Examples

Input

20 30

Output

10

Input

50 25

Output

25

Input

25 25

Output

0

inputFormat

Input

The input is given in the following format.

x1x_1 x2x_2

The input line provides dragonflies’ head positions x1x_1 and x2x_2 (0x1,x21000 \leq x_1, x_2 \leq 100) as integers.

outputFormat

Output

Output the distance between the two red dragonflies in a line.

Examples

Input

20 30

Output

10

Input

50 25

Output

25

Input

25 25

Output

0

样例

50 25
25