Read three integers and print the largest of the three.
Input / Output
Input: three integers on one line, separated by spaces. Output: the largest of the three.
Examples
Input
3 7 5
Expected Output
7
Input
10 2 8
Expected Output
10
+ 2 hidden tests checked on Submit.
Main.java is the entry point. Add extra classes for OOP exercises — they compile together.
Run your code to see test results here.