print '';print 'FahrenheitCelsius';for ($fahr = -50; $fahr <= 50; $fahr += 5) { $celsius = ($fahr - 32) * 5 / 9; print "$fahr$celsius";}print '';