def main(): age = input('How old are you?\n') if age >= 0 and age <= 120: print('OK') else: print('Impossible!') if __name__ == '__main__': main()