age = input('Tell me your age? > ') print('Your age is.....') print(age) if int(age) < 30: print('Young!!!') else: print('Old!!!!')