#Gym annual membership price consists of monthly payments and additional #annual fee that paid once per year in June. Write a program that reads #monthly membership payment and annual fee and finds the average price #user pays per month. In addition, the program asks user to enter the number of #times user visited gym in January. The program prints the average price #per visit in January. #Input: monthly_payment (float), annual_fee (float), num_visits (int) #Part I Input monthly_payment=float(input("enter monthly_payment ")) annual_fee=float(input("enter annual_fee ")) num_visits=int(input("enter num_visits ")) #part II Calculations month_average=(monthly_payment*12+annual_fee)/12 #alternative solution: moth_average=monthly_payment + annual_fee/12 average_per_visit=month_average/num_visits #part III output print("month_average=", month_average) print("average_per_visit=",average_per_visit)