1004 - Simple Product


Problem Link

A 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;

}



No comments

Theme images by Jason Morrow. Powered by Blogger.