#include <stdio.h> int main() { float a,f; scanf("%f",&f); a=(f-32)/1.8; printf("c is %-4.2f\n",a); return 0; }