#My beginner school code

def Age():
    Age = int(input('How old are you? '))
    if Age>13:
        print('You are old enough for a paper-round')
    elif 13>Age:
        print('You are too young for a paper-round')