#31831: python 一行解


wmouo (crazypanda)


print(f'{(int(input())-32)*5/9:.3f}')
上面是39ms
下面是24ms
n = int(input())
print(f'{(n-32)*5/9:.3f}')