fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. main()
  5.  
  6. {
  7.  
  8. int count = 0;
  9. for (;; count++) {
  10.  
  11. if (count == 3)
  12.  
  13. break;
  14.  
  15. else if (count < 4)
  16.  
  17. cout << "1"; else
  18.  
  19. cout << "2";
  20. }
  21. }
  22.  
Success #stdin #stdout 0s 5464KB
stdin
Standard input is empty
stdout
111