Answer:
celcius = float(input())
farenheit = (9/5) * celcius + 32
print(farenheit)
Step-by-step explanation:
Step 1 read the celcius data
celcius = float(input())
Step 2 calculate the farenheit data with the equetion (9/5)C+32
farenheit = (9/5) * celcius + 32
Step 3 show results
print(farenheit)