fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main() {
  6. string nome;
  7. cin >> nome;
  8. cout << nome << endl;
  9. }
  10.  
  11. //https://pt.stackoverflow.com/q/397712/101
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout