n = 1while n<101: if n % 2 == 0: n = n + 1 else: print(n) n = n + 1