Uri solution 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;
}

Comments

Popular posts from this blog

Uri Solution 2747 Output 1

Codeforces Solution 230B T-primes