<?php
function celsiuksestafahrenheitiksi ($celsius)
{
echo $celsius * 33.8;
}
celsiuksestafahrenheitiksi (1);
?>