Sunday, 28 June 2015

URI 1001-Extremely Basic_Solution

/*
Tanzila Islam
Southeast University
mail : tanzilamohita@gmail.com
Problem Link:
https://www.urionlinejudge.com.br/judge/en/problems/view/1001
*/
#include<iostream>
using namespace std;


int main(){
int A,B,X;
cin >> A >> B;
X=A+B;
cout << "X = " << X << endl;


return 0;


}

No comments:

Post a Comment