temperature=int(input('Введите температуру '))
C=(temperature-32)/1.8
print(C)
p2mbot@mbp:~$ python
Python 3.4.3 (default, Jun 23 2015, 23:08:55)
[GCC 4.2.1 Compatible Apple LLVM 6.1.0 (clang-602.0.53)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> temperature=int(input('Введите температуру '))
Введите температуру 99
>>> C=(temperature-32)/1.8
>>> print(C)
37.22222222222222
>>>