#include using namespace std; int main(){ int i=0; while(i<10){ i++; if(i>100){ break; } } }