#city = None and 0 and {} and '' and Flase and []
#print(city)
#age =70
#is_number =True
#if age>=60:
# if is_number:
# print("30% senior discount")
# else:
# print("")
x=10
def a(y):
if y:
print("hello")
return 1
else:
print("false")
while(a(x)):
if x==5:
x =x-1
continue
#if x==4:
# break
print(x)
x=x-1
else:
print("normal exit of the while loop")
print("after while")