celcius = float(input('°C: '))

fahrenheit = 1.8 * celcius + 32

print(f'\n{celcius} °C = {fahrenheit} °F')