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