#include<stdio.h>

int main()

{
float F,C;
printf("Type the value of the temperature in Celsius:");

scanf("%f", &C);

F=((C*9)/5)+32;

printf("equivalent temperature in Fahrenheit-%.2f F\n",F);
  return 0;

}