#!/usr/bin/python3 # -*- coding: utf-8 -*- # Integer versus float division fahr: int = int(input()) # despite calling celc a float, it labels an int. celc: float = (5 // 9) * (fahr - 32) print(celc)