fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. int main() {
  5. // your code goes here
  6. std::string s;
  7. std::getline(std::cin, s, '.');
  8.  
  9. std::cout << s << std::endl;
  10.  
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 3476KB
stdin
La frase finisce qui. QUESTO NON SARÀ LETTO.
stdout
La frase finisce qui