Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #include <cstdlib>
  2. #include <iostream>
  3. #include <string>
  4.  
  5. int main(void) {
  6. std::string name;
  7.  
  8. std::getline(std::cin, name);
  9.  
  10. std::cout << name << "\n";
  11. return EXIT_SUCCESS;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement