try: 
    user_age = int(input())

    if user_age < 0: 
        raise ValueError('Invalid age')

        avg_max_heart_rate = 220 - user_age 

        print(f'Avg: {avg_max_heart_rate}')
except ValueError as excpt: 
    print(f'Error: {excpt}')

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: