Anyone know why this is wrong?
package com.codegym.task.task03.task0318;
/*
Plan to conquer the world
*/
https://codegym.cc/help?taskKey=com.codegym.task.task03.task0318
import java.io.*;
import java.util.Scanner;
public class Solution {
public static void main(String[] args) throws Exception {
Scanner scan = new Scanner(System.in);
String name = scan.nextLine();
int number = scan.nextInt();
System.out.println (name + " will take over the world in "+ number +" years. Mwa-ha-ha!");
}
}