class Program01 { public static void main(String[] args) { int a = 3; String e = (a > 10) ? "Nagyobb" : "Kisebb"; System.out.println(e); } }