public class ImportExam { public static void main(String args[]) { Random rand = new Random(); int a = rand.nextInt(3); int b = rand.nextInt(3); if(a==b) { System.out.println(a+ "와 "+b+"는 같다."); } else { System.out.println(a+ "와 "+b+"는 같지 않다."); } } }