def main():
    age = int(input("Please enter your age: "))
    restHR = int(input("Please enter your resting heart rate: "))

    print("=======================================")

    #TODO: Fill in the rest of the necessary code here

    print("=======================================")

main()