I really dont know what is wrong with this code. Can someone help me out?
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
BufferedReader reader = BufferedReader(InputStreamReader(System.in));
String name = reader.readLine;
String sAge = reader.readLine;
int nAge = Integer.parseInt(sAge);
System.out.println(name+ " will conquer the world in " +nAge+ " years. Mwa-ha-ha!");
}
}