#ODDS
print('============= ODDS =============')
count = 1
while(count <= 10):
    print(count)
    count += 2

#EVENS
print('============= EVENS =============')
count = 2
while(count <= 10):
    print(count)
    count += 2

count = 1
while(count <=10):
    if(count % 2 == 0):
        print(count, "is EVEN.")
    else:
        print(count, "is ODD.")
    count += 1
print("This happens ONCE, after the loop.")
# when you unindent to the level of the loop, it happens after exit.
