class Program { public static void main(String[] args) { int a = 8; String b = a > 5 ? "Nagyobb" : "Kisebb"; System.out.println(b); } }