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