import java.util.*;
public class printMul{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
System.out.println("Enter the first number");
int a = sc.nextInt();
System.out.println("Enter the second number");
int b = sc.nextInt();
int mul = a * b;
System.out.print("The result of a x b is:" + mul);
}
}