Md_Touhid

URI - Problem 1001 - Extremely Basic

Apr 11th, 2020
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int A, B;
  8.    
  9.     cin >> A;
  10.     cin >> B;
  11.    
  12.     int X = A+B;
  13.    
  14.     cout << "X = " << X << endl;
  15.    
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment