"""Exercise 10.1.4 — Indenting the body

Chapter 10: Functions — Everyday Programming

This program defines a function with two body lines and calls it once.

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

def study_plan():
    print("Read the chapter.")
  print("Solve five problems.")

study_plan()
