# Homework 09, challenge. # Print each item line, then a blank line, then the total line. apple = 3 bread = 2 milk = 4 total = apple + bread + milk # TODO