URI Online Judge | 1004 Simple Product
Problem Link : 1004 Simple Product
Solution :
Develop by Samsus Salehin Sabbir
Solution :
Develop by Samsus Salehin Sabbir
- #include <stdio.h>
- int main(void) {
- // your code goes here
- int a,b,PROD;
- scanf("%d %d",&a,&b);
- PROD=a*b;
- printf("PROD = %d\n",PROD);
- return 0;
- }
No comments