Advertisement
MeehoweCK

Untitled

Jul 19th, 2018
223
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.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     string jakis_napis;
  8.     getline(cin, jakis_napis);      // pobiera cały wiersz, aż do entera
  9.     cout << jakis_napis << endl;
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement