#include<stdio.h>
int main(){
float c,f;
printf("Enter the value of c,f:");
scanf("%f %f",&c,&f);
c=(5*(f-32))/9;
printf("%f",c);
return 0;
}