"""Exercise 10.3.3 — Returning early

Chapter 10: Functions — Everyday Programming

This program should convert Celsius to Fahrenheit and print 212.0 for
100 degrees.

This program contains exactly one bug. Solution: sol_10_3_3.py
"""

def c_to_f(celsius):
    return
    celsius * 9 / 5 + 32

print(c_to_f(100))  # 212.0
