"""Exercise 20.7.2 — Doubling a typed quantity

Chapter 20: Common Pitfalls — Everyday Programming

This program should double the number of cookies the user enters.

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

cookies = input("How many cookies? ")
print(cookies * 2 == 24)  # for input 12
