#include int main(){int lower=30,power=35,f;double c;for(f=lower;f<=power;f++){ c = 5.0*(f-32)/9.0; printf("%4d%6.llf",f,c); }return 0;}