what seems to be the problem?
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 input = new Scanner(System.in);
String name = input.nextLine();
int age = input.nextInt();
System.out.println(name + " will capture the world in " + age + " years. Mwa-ha-ha!");
}
}