Won't display user input.
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 {
//write your code here
Scanner in= new Scanner (System.in);
String n=in.nextLine();
int t=in.nextInt();
System.out.println(n+"will take over the world in "+t+"years. Mwa-ha-ha!");
}
}