#include int main(void) { long i = 1; for( ; ; ++i){ if (i % 2 == 0) continue; if (i > 1000) break; printf("%ld: Hi there...\n", i); } return 0; }