Simple Product
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 PROD according to the following example, with a blank space before and after the equal signal.
| Input Samples | Output Samples |
| 3 9 | PROD = 27 |
| -30 10 | PROD = -300 |
| 0 9 | PROD = 0 |
SOLVE
#include <stdio.h>
int main()
{
int A,B,prod;
scanf("%d",&A);
scanf("%d",&B);
prod = A * B;
printf("PROD = %d\n",prod);
return 0;
}
- Best Laravel App Developer in Mirpur, Dhaka – Nurnobi Shanto
- Best Laravel App Developer in Dhaka – Nurnobi Shanto
- How to Use URI Online Judge to Improve Your Coding Skills and Boost Your Career
- BEST FREE GIFT CARD GENERATOR in 2022
- উইন্ডোজ 11 এসে গেল, নজরকাড়া লুক, তাক লাগানো ফিচার্স!
