import java.io.*; public class Solution { public static void main(String[] args) throws Exception { BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); String sAge = reader.readLine(); int nAge = Integer.parseInt(sAge); String name = reader.readLine(); System.out.print(name+" will capture the world in "+nAge+" years. Mwa-ha-ha!"); } }