I am new to programming and I am trying to fix the Java code errors below and no matter what I do I cannot get it to compile and run. Would anyone mind helping me with this and explain what I am needing to do. Thank you.
import java.util.Scanner;
public class SyntaxError
{
public static void main(String[] args)
{
System.out.println(Enter two numbers to multiply.)
Scanner keyboard = new Scanner(System.in);
n1 = keyboard.nextInt();
n2 = keyboard.nextInt();
int product = n1 * n2;
System.out.println("The product is " + product);
}
}