# Continue Statement
i = 1
while i <= 20:
  if i % 2 == 0:
    i = i + 1
    continue;
  print(i)
  i += 1
