#include int main( void ) { double fahr = 212, cel; cel = ( 5.0 / 9.0 ) * ( fahr - 32 ); printf( "%3.1f %3.1f\n", fahr, cel ); }