import java.util.*; import java.io.*; public class jin { public static void main(String[] args) throws IOException { Scanner input = new Scanner(System.in); int A; int B; int X; int Y; System.out.print("Enter value A: "); int iyerA = input.nextInt(); System.out.print("Enter value B: "); int iyerB = input.nextInt(); System.out.print("Enter value Y: "); String iyerX = input.nextLine(); System.out.print("Enter value B: "); String iyerY = input.nextLine(); if( iyerA > iyerB } static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static StringTokenizer st; static String next() throws IOException { while (st == null || !st.hasMoreTokens()) st = new StringTokenizer(br.readLine().trim()); return st.nextToken(); } static int readInt() throws IOException { return Integer.parseInt(next()); } static long readLong() throws IOException { return Long.parseLong(next()); } static double readDouble() throws IOException { return Double.parseDouble(next()); } static String readLine() throws IOException { return br.readLine().trim(); } static char readChar() throws IOException { return next().charAt(0); } }