#include <stdio.h>
float func(int x){
	return (x - 32.0) * (5.0 / 9.0);
}

float func_ex_cast(int x){
	return ((float)x - 32.0) * (5.0 / 9.0);
}

int main(void) {
	for(int i = 0; i < 100; i += 10){
		printf("%d : %f \n", i, func(i));
	}
	for(int i = 0; i < 100; i += 10){
		printf("%d : %f \n", i, func_ex_cast(i));
	}
	return 0;
}



