#Lab 3 Part 2 Problems 2 and 3 combined #Write a Python program that converts Celsius temperature to the correspondent #Fahrenheit temperature. The equation for converting a Celsius temperature to #Fahrenheit is #Fahrenheit=(9*Celsius/5)+32 #and converts Fahrenheit temperature to Celsius #temperature according to the following formula: #Celsius= (5/9)*(Fahrenheit - 32) #Input: two floats: Celsius and Fahrenheit #Output: corresponding Fahrenheit and Celsius #Run for the following example: #Celsius=16.7 Fahrenheit = 62.06 #Part I Input Celsius = float(input("enter Celsius ")) Fahrenheit = float(input("enter Fahrenheit ")) #Part II Calculations Fahrenheit = (9*Celsius/5)+32 Celsius = (5/9)*(Fahrenheit - 32) #Part III Output print("corresponding Fahrenheit is", Fahrenheit) print("corresponding Celsius is", Celsius)