Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- // input output stream
- using namespace std;
- int main()
- {
- // cout: pecatenje
- // cin: vnesuvanje
- // cin: command output(c output), vnesi nesto vo kompjuterot
- // cin >> name_of_variable;
- int broj;
- cin >> broj;
- cout << broj << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment