print ('Whay is your name?') myName = input() a = len(myName) if a < 3: print("Name is to short") exit() elif a >= 3: print('What is your age?') age = input() myAge = int(age) if myAge < 12: print('child') elif myAge < 20: print('teenager') elif myAge < 60: print('adult') elif myAge > 59: print('old') print ('You will be ' + str(int(myAge) + 1) + ' in a year')