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