# Tipper amount= float(input("How much was your bill?")) print (amount) print("With a 10% tip, that would be", amount*1.1) newamount=(amount*1.15) print("With a 15% tip, that would be", newamount)