Java 代码
/**4 MDKJ
“It is health that is real wealth and not pieces of gold and silver.”
— Mahatma Gandhi
*/
import java.util.Scanner;
public class Main
{
public static void main(String[] args)
{
Scanner cin = new Scanner(System.in);
int max = cin.nextInt();
for (int i=0; i < 2; i++)
{
int next = cin.nextInt();
if (max < next)
max = next;
}
System.out.println(max + " eh o maior");
}
}