guyzz anyone ..please give the solution or hint
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 {
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
System.out.println("entered name.");
try{
String name=br.readLine();
System.out.println("entered number.");
String ans=br.readLine();
int number=Integer.parseInt(ans);
System.out.println(name+" will capture the world in "+number+" years. Mwa-ha-ha!");
}
catch(Exception e)
{
}
}
}