Maximum of Three Integers
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