package com.codegym.task.task03.task0318;

/*
Plan to conquer the world

*/

//import java.io.*;
import java.util.*;

public class Solution {
    public static void main(String[] args) throws Exception {
        //write your code here
        String name;
        int number;
        Scanner input = new Scanner(System.in);
        name = input.nextLine();

        number = input.nextInt();
        System.out.println(name + " will take over the world in " + number + " years. Mwa-ha-ha!" );
    }
}