Fill in the Java program template below to read three integer exam grades from the user (keyboard) and prints the average of the three grades rounded to one decimal place. Make sure to use nice prompts.
public class Program {
void run() {
}
// DO NOT MODIFY CODE BELOW THIS LINE
public static void main(String [] args) {
Program p = new Program();
p.run();
}
}