i cant run this program pls help???
import java.util.Scanner;
public class main {
static String af;
static String bf;
public static void main(String args[]) {
final double R = 1.0967 * (10000000);
double lowest = Double.parseDouble(af);
double highest = Double.parseDouble(bf);
double answer;
answer = R * (1 / (lowest * lowest) - 1 / (highest * highest));
System.out.println(
"Insert the lowest Energy level");
Scanner obj = new Scanner(System.in);
af = obj.nextLine();
System.out.println("Now,Insert Highest Energy level");
bf = obj.nextLine();
System.out.println("Wave Length is " + answer);
}
}