fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. int SIZE = 128;
  7.  
  8. for (int stride = SIZE/2 ; stride < 0 ; stride >>= 1)
  9. cout << "Hello I'm running" << endl;
  10.  
  11.  
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty