fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int y;
  5.  
  6. int main() {
  7. int z = 1000;
  8. int x;
  9. for (int i = 0; i< 10; i++) {
  10. cout << "hai" << endl;
  11. }
  12. cout << x << " " << y << " " << z << endl;
  13. return 0;
  14. }
Success #stdin #stdout 0s 5300KB
stdin
Standard input is empty
stdout
hai
hai
hai
hai
hai
hai
hai
hai
hai
hai
0 0 1000