#include <stdio.h> int main () { int y = 100; while(y < 200) { if(y % 2 != 0) { printf("%d ", y); } y = y + 1; } return 0; }