Dunno what is wrong
package com.codegym.task.task03.task0318;

/*
Plan to conquer the world

*/

import java.io.*;

public class Solution {
    public static void main(String[] args) throws Exception {
        Scanner name = new Scanner(System.in);
        int i = name.next();
        String n = name.next();


        System.out.println(n +" will take over the world in "+ i+ " years. Mwa-ha-ha!");
    }
}