import java.io.*; import java.util.*; public class Solution { public static void main(String[] args) throws Exception { //write your code here Scanner ob = new Scanner(System.in); int age = ob.nextInt(); String name = ob.nextLine(); System.out.println(name+" will take over the world in "+ age +" years. Mwa-ha-ha!"); } }