public class MainClass{ public static void main(String[] argv){ System.out.println(Math.max(1,2)); System.out.println(Math.max(-1,-2)); } }
2 -1