celcius = float(input('°C: '))
fahrenheit = 1.8 * celcius + 32
print('\n{} °C = {} °F'.format(celcius, fahrenheit))