#include <iostream> int main() { int i=0; do { i++; if(i < 10) continue; std::cout << i; } while(false); std::cout << i; return 0; }