
Simple Product
Adapted by Neilor Tonin, URI Brazil
Read two integer values. After this, calculate the product between them and store the result in a variable named PROD. Print the result like the example below. Do not forget to print the end of line after the result, otherwise you will receive “Presentation Error”.
Input
The input file contains 2 integer numbers.
Output
Print the message "PROD" and PROD according to the following example, with a blank space before and after the equal signal.
Input Samples | Output Samples |
3 |
PROD = 27 |
-30 |
PROD = -300 |
0 |
PROD = 0 |
N.B.: It's better if you solve this by your own. Thank you!
URI - BEECROWD Online Judge 1004 Solve in C :
//Solved by Intesar#include <stdio.h>int main(){ int A,B; scanf("%d%d",&A,&B); printf("PROD = %d\n",A*B);
return 0;}
0 Comments