You are given three integer numbers a, b, c as input. Print the largest number of them

Example 1

Input

100 2 999

Output

999

Example 2

Input

3 2 1

Output

3

Example 3

Input

-10 -2 -5

Output

-2