xxxxxxxxxx
celsius = float(input("Enter temperature in degrees Celsius: "))
fahrenheit = (celsius * 9/5) + 32
print(f"The temperature in Fahrenheit is: {fahrenheit}")
if fahrenheit > 100:
print("Warning: The temperature has gone above the threshold of 100 degrees Fahrenheit.")
elif fahrenheit < 32:
print("Warning: The temperature is below freezing point in Fahrenheit.")