# Celsius - Fahrenheit conversion
# F = (C × 9/5) + 32
# C = (F − 32) x 5/9
C = float(input("Enter temperature in Celcius : "))
F = (C * 9/5) + 32
print("Temperature in Fahrenheit = ", F)
# F = (C × 9/5) + 32
# C = (F − 32) x 5/9
C = float(input("Enter temperature in Celcius : "))
F = (C * 9/5) + 32
print("Temperature in Fahrenheit = ", F)