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