import java.util.Scanner; class no_9001{ public static void main(String[] args){ Scanner scn = new Scanner(System.in); int a = scn.nextInt(); a = 1; int b = scn.nextInt(); b = 2; String s = scn.nextLine(); s = "yukicoder"; System.out.println(a + b + " " + s); } }