Advertisement
Guest User

Untitled

a guest
Dec 17th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int a;
  8. cout << "Vvedite pojaluista pervoe chislo: ";
  9. cout << endl;
  10. cin >> a;
  11. int b;
  12. cout << "vvedite pojaluista vtoroe chislo: ";
  13. cout << endl;
  14. cin >> b;
  15. cout << "summa ";
  16. cout << a;
  17. cout << "+";
  18. cout << b;
  19. cout << "=";
  20. cout << a + b;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement