#D2231. Differential

    ID: 1857 Type: Default 1000ms 134MiB

Differential

Differential

There is data that records the altitude of mountains that have been climbed so far. Create a program that reads this data and outputs the elevation difference between the highest and lowest mountains.

Input

The input is given in the following format:

Mountain height ... ...

The height of the mountain is given over multiple lines. All values ​​entered are real numbers greater than or equal to 0 and less than or equal to 1,000,000. The number of mountain heights entered is 50 or less.

Output

The elevation difference between the highest mountain and the lowest mountain is output as a real number. The output may contain an error of 0.01 or less.

Example

Input

3776.0 1819.0 645.2 2004.1 1208.6

Output

3130.8

inputFormat

outputFormat

outputs the elevation difference between the highest and lowest mountains.

Input

The input is given in the following format:

Mountain height ... ...

The height of the mountain is given over multiple lines. All values ​​entered are real numbers greater than or equal to 0 and less than or equal to 1,000,000. The number of mountain heights entered is 50 or less.

Output

The elevation difference between the highest mountain and the lowest mountain is output as a real number. The output may contain an error of 0.01 or less.

Example

Input

3776.0 1819.0 645.2 2004.1 1208.6

Output

3130.8

样例

3776.0
1819.0
645.2
2004.1
1208.6
3130.8