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