//converts farenheat to celcius
#include<iostream.h>
int main()
{
float f;
cout<<"Temperature in degree a F :";cin>>f;
cout<<f<<" degree F = "<<(f-32)/1.8<<" degree C"<<endl;
return 0;
}