import java.io.*;
import java.util.Scanner;
public class Solution {
public static void main(String[] args) throws Exception {
Scanner sc1 = new Scanner(System.in);
String name = sc1.next();
int years = sc1.nextInt();
System.out.println(name + " will take over the world in "+ years + " years. Mwa-ha-ha!");
}
}
package com.codegym.task.task03.task0318;
/*
Plan to conquer the world
*/
import java.io.*;
import java.util.Scanner;
public class Solution {
public static void main(String[] args) throws Exception {
Scanner sc1 = new Scanner(System.in);
String name = sc1.next();
int years = sc1.nextInt();
System.out.println(name + " will take over the world in "+ years + " years. Mwa-ha-ha!");
}
}