Largest Of Three Numbers

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

Test your solution here
when it passes, copy it and submit it here so your coach can grade it.