import java.io.*; public class Solution { public static void main(String[] args) throws Exception { Scanner scanner1 = new Scanner(System.in); int number = scanner1.nextInt(); String name = scanner1.readLine(); System.out.println(name + " will take over the world in " + number + " years. Mwa-ha-ha!"); } }