Advertisement
Guest User

Untitled

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