Answer:
celsius = float(input("Enter the celcius value: "))
f = 1.8 * celsius + 32
print(str(celsius) + " C = "+ str(f) + " F")
Step-by-step explanation:
The code is in Python.
Ask the user for the input, celsius value
Convert the celsius value to fahrenheit using the given formula
Print the result as in shown in the example output