#include <stdio.h> int main() { int i = 0; do { i++; if (i % 2 == 0) { continue; } printf("Odd number: %d\n", i); } while (i < 10); return 0; }