while I was studying Stanford CS 106 A I had to download acm.jar file. I have imported and everything worked fine till I wanted to run a simple program from the source code I got in video. The error down below:

(https://i.sstatic.net/dcf9v.png)
When I want to run:
https://i.sstatic.net/evrhY.jpg
and the source code:
import acm.program.*;
public class Add2Doubles extends ConsoleProgram {
public void run() {
println("This program adds two numbers.");
int n1 = readInt("Enter n1: ");
int n2 = readInt("Enter n2: ");
int total = n1 + n2;
println("The total is " + total + ".");
}
}
Thanks in advance for your helps. I'm on lecture 5.