#include int main() { float temp; printf("What is the temperature outside?"); scanf("%f",&temp); if(temp < 65) printf("My but it's a bit chilly out!\n"); if(temp >= 65) printf("My how pleasant!\n"); return(0); }