loop.cpp
#include <iostream> using namespace std; int main() { // your code goes here for(int cnt ; true ; cnt++){ if (cnt % 10 == 0) continue; cout<<cnt<<endl; if (cnt > 100) break; } return 0; }