Can anyone, pleae, tell me why what am I doig wrong? The only error i get is :" The displayed text must fully match the task conditions." Since I have the right input And the right output, I dont understand why. :(
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 {
//write your code here
InputStream inputStream=System.in;
Reader inputStreamReader=new InputStreamReader(System.in);
BufferedReader bufferedReader=new BufferedReader(inputStreamReader);
String name=bufferedReader.readLine();
String number=bufferedReader.readLine();
int num=Integer.parseInt(number);
System.out.println(name+"will take over the world in"+" "+num+" "+"years. Mwa-ha-ha!");
}
}