Guest User

Untitled

a guest
Jan 20th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int a = 50;
  7. int b = 50;
  8. int c = a + b;
  9. cout << "a + b = " << c;
  10. }
Add Comment
Please, Sign In to add comment