fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. ios::sync_with_stdio(false);
  6. cin.tie(nullptr);
  7.  
  8. string S;
  9. cin >> S;
  10.  
  11. cout << "Hola, " << S << '\n';
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 5316KB
stdin
1
2
10
42
11
stdout
Hola, 1