Wednesday, May 6, 2020

URI 1004 - Simple Product

#include<stdio.h>
int main()
{


   int A,B,PROD ;
   scanf("%d %d",&A,&B);
   PROD = A*B;
   printf("PROD = %d\n",PROD);
   return (0);
}

No comments:

Post a Comment