fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int i=0;
  8.  
  9. #define int bool
  10.  
  11. for (int x=0; x<3; ++x)
  12. {
  13. cout << x << '\n';
  14. if (++i > 15) break;
  15. }
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
0
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1