URI Online Judge Solution 1004 - Solution in C






Solution in C



#include <stdio.h>
int main()
{
    int a,b,PROD;
    scanf("%d%d",&a,&b);
    PROD=a*b;
    printf("PROD = %d\n",PROD);
    return 0;
}



~~~~~Happy coding~~~~

No comments

Powered by Blogger.