URI Online Judge | 1001 Extremely Basic
Problem Link : 1001 Extremely Basic
Solution :
Develop by Samsus Salehin Sabbir
Solution :
Develop by Samsus Salehin Sabbir
- #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