#include"stdio.h"void main(){ double c,f;
scanf("%f",&f); c=(5/9)*(f-32);
printf("c=%f\n",c); getch();}