URI Online Judge | 1004
Simple Product
Adapted by Neilor Tonin, URI Brazil
Timelimit: 1
Problem Description:
Problem Number:1004
Problem Name: Simple Product
Author’s Name:Adapted by Neilor Tonin, URI Brazil
Timelimit: 1
Problem Category: BEGINNER.
Problem Source: https://www.urionlinejudge.com.br/judge/en/problems/view/1004
Solution in C
#include <stdio.h>
int main()
{
int A,B;
scanf ("%d %d", &A, &B);
printf("PROD = %d\n",A*B);
return 0;
}
0 comments:
Post a Comment