#include int main() { int i=1; do { std::cout << i; i++; if(i < 3) continue; } while(false); }