1. import java.util.*;
  2. public class hello{
  3. public static void main(String args[])
  4. {
  5. Scanner scan = new Scanner(System.in);
  6. int a = 0;
  7. System.out.println("Enter a number");
  8. a = scan.nextInt();
  9.  
  10. int b = 0;
  11. System.out.println("Enter a number");
  12. b = scan.nextInt();
  13.  
  14. System.out.println("The product of these numbers is: " +(a*b);
  15. }}