Getting started on A4

# This is a "comment", to the end of line.
# You can type documentation for other programmers.

# Anything over 10 is taxable.
tax_subtotal = 0.0

price1 = float(raw_input("Enter price of item 1: "))
price2 = float(raw_input("Enter price of item 2: "))

if price1 > 10:
    tax_subtotal = tax_subtotal + price1

if price2 > 10:
    tax_subtotal = tax_subtotal + price2

print " Item 1: ", price1
print " Item 2: ", price2

print " Taxable subtotal: ", tax_subtotal