Advertisement
Josif_tepe

Untitled

Feb 4th, 2022
906
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     string ime;
  6.     cin >> ime;
  7.  
  8.     string prezime;
  9.     cin >> prezime;
  10.    
  11.     cout << ime << " " << prezime << endl;
  12.    
  13.     return 0;
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement