2653: 求出最大整数
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:5
Solved:4
Description
输入三个整数a, b, c, 求出其中最大的数!
Input
输入有很多行,每行有三个整数,分别用空格分离。
Output
输出每一行三个整数的最大值,每个输出一行。
Sample Input Copy
1 2 3
1 3 2
Sample Output Copy
3
3