Can,t find the typo.
package com.codegym.task.task03.task0325;
import java.io.*;
import java.util.Scanner;
/*
Financial expectations
*/
public class Solution {
public static void main(String[] args) throws Exception {
Scanner scanner = new Scanner(System.in);
int n = scanner.nextInt();
System.out.println("I will earn $" + n + "per hour");//write your code here
}
}