#include<stdio.h>
int main() {
   int a,b,product;
   printf("Enter two integers:\n");
   scanf("%d %d", &a, &b);
   product = a*b;
   printf("Product = %d", product);
   return 0
}