public class Statement1 { public static void main(String[] args) { int x = 3; int y = 2; if (x > y) System.out.println("xはyよりも大きいです。"); } }