#include #include main() { int a,b,c; printf("Input A"); scanf("%d",&a); printf("\nInput B"); scanf("%d",&b); c = a*b; printf("\nResult : %d",c); }