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