Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int x = 10;
- int y = 20;
- int zbir = x + y;
- cout << zbir << endl; // moze da se pecati i samo cout << x + y << endl; bez da ni dade greska
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment