def main():
Age=input("enter your Age:")
if(int(Age)>=8 and int(Age)<=10):
print("children")
print("children")
print("children")
print("children")
elif(int(Age)>=11 and int(Age)<=15):
print("kids")
elif(int(Age)>=16 and int(Age)<=18):
print("Tingers")
elif(int(Age)>=19 and int(Age)<=30):
print("Young")
else:
print("Out of range")
print("End")
if __name__ == '__main__':main()