Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.  
  9. int a = 0;
  10. int b = 0;
  11. cout << "a: ";
  12. cin >> a;
  13. cout << "b: ";
  14. cin >> b;
  15. cout << a <<" + "<< b<<" = "<<a+b<<endl;
  16.  
  17. system("pause>0");
  18. return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement