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