Sunday, 28 June 2015

URI 1004-Simple Product_Solution

/*
Tanzila Islam
Southeast University
mail : tanzilamohita@gmail.com
Problem Link:
https://www.urionlinejudge.com.br/judge/en/problems/view/1004
*/

#include<iostream>
using namespace std;

int main(){
int A,B,PROD;
cin >> A >> B;
PROD=A*B;
cout << "PROD = " << PROD << endl;
return 0;
}

No comments:

Post a Comment