#include<stdio.h>
int main(){
printf(“\n enter the Fahrenheit of temperature”);
printf(“\n enter the Celcius of temperature”);
scanf(“%f%f”,&F,&C);
C = 5/9*(F-32);
K = C+273.15;
printf(“\n Celcius of temperature in Fahrenheit is : %f”,F);
printf(“\n “)
}