Srxon05

cmt unos ispis suma

Oct 25th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int x, y;
  8.     cout<< "Unesi x: " << endl;
  9.     cin >> x;
  10.     cout<< "Unesi y: " << endl;
  11.     cin >> y;
  12.     cout << "suma je: ";
  13.     cout<< (x+y) << endl;
  14.  
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment