"""Exercise 18.2.3 — Doubling a recipe

Chapter 18: Bugs — Everyday Programming

This program should double the cups of flour in a recipe.

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

cups_of_flour = "2"
doubled = cups_of_flour * 2.0
print(doubled)   # expected: 4.0
