josiftepe

Untitled

Oct 23rd, 2020
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #include <iostream>
  2. // input output stream
  3. using namespace std;
  4.  
  5.  
  6. int main()
  7. {
  8.     // cout: pecatenje
  9.     // cin: vnesuvanje
  10.     // cin: command output(c output), vnesi nesto vo kompjuterot
  11.     // cin >> name_of_variable;
  12.    
  13.     int broj;
  14.     cin >> broj;
  15.     cout << broj << endl;
  16.     return 0;
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment