Maximum of Three Integers


Submit solution

Points: 10
Time limit: 1.0s
Memory limit: 256M

Author:
Problem type

Given three integers \(a\), \(b\), and \(c\), find the largest value.

Input

One line containing three integers \(a\), \(b\), and \(c\) (\(|a|, |b|, |c| \le 10^9\)).

Output

Print the largest of the three integers.

Example

Input
4 9 2
Output
9

Comments

There are no comments at the moment.