SOLUTION OF URI 1004 URI SOLUTIONS // question of 1004 Simple Product // Mahmud_Jamil #include<stdio.h> int main() { int A,B,PROD; scanf("%d %d",&A,&B); PROD=A*B; printf("PROD = %d\n",PROD); return 0; } Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook