// program to convert celcius to farenheit (f= 9/5*c +32)
#include <stdio.h>
int main(){
    int celsius;
    printf("Give your body temprature in celsius(C):/n");
    scanf("%d", &celsius);
    printf("You are cool at the %f Farenheit(F).", (9.0/5.0*celsius)+32); 
    return 0;
}