Not sure what the issue with is: it threw a huge error:
int nDollars = Integer.parseInt(sDollars);
I have hence commented it out and used the string sDollars to display n.
package com.codegym.task.task03.task0325;
import java.io.*;
/*
Financial expectations
*/
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String sDollars = reader.readLine();
//int nDollars = Integer.parseInt(sDollars);
System.out.println("I will earn $" + sDollars + " per hour");
}
}