#include <stdio.h>
int main() { int num1, num2, product;
// Asking for input
printf("Enter two integers: ");
scanf("%d %d", &num1, &num2);
// Multiplying the two numbers
product = num1 * num2;
// Displaying the result
printf("Product of %d and %d is %d\n", num1, num2, product);
return 0;
}