"""Exercise 20.7.5 — Averaging a typed temperature

Chapter 20: Common Pitfalls — Everyday Programming

This program should halve the temperature the user types.

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

temperature = input("Temperature: ")
print(temperature / 2)
