m1 = Money(1,30) m2 = Money(2,20) m3 = Money(3,90) m4 = Money() print "Should be $1.30", m1 print "Should be $2.20", m2 print "Should be $0.00", m4 m2.reduceBy(m1) print "Should be $0.90", m2 m2.increaseBy(m3) print "Should be $4.80", m2 m3.timesBy(3) print "Should be $11.70", m3 # One point for every correct output line # One point for trailing zeros when needed # Your class must use two ints to store the dollar amount, one for the dollars and one for the pennies. # (true/false)Xena never dated Hercules