Write a function that converts from celcius to fahrenheit. The formula is F = C * 9/5 + 32.
(define celcius-to-fahrenheit (lambda (x) (+ 32 (* x (/ 9 5)))))