**Before watching this make sure that you’ve tried enough**
#include <stdio.h> int main() { int A,B,PROD; scanf("%d%d", &A, &B); PROD = A * B; printf("PROD = %d\n", PROD); return 0; }
If this solution helped you, please share this with your friends.