Guest User

Untitled

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