fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int x=6,y=2;
  6. while(x==6)
  7. if(++y<x)
  8.  
  9. cout<<'*';
  10. else
  11.  
  12. break;
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0s 4408KB
stdin
Standard input is empty
stdout
***