#part1 price1 = 11 #In this example, the price is an int tip1 = 0.2 #In this example, the tip is a double total1 = price1 + price1 * tip1 print(total1) #part2 price2 = 24.87 #Now the price is also a double tip2 = 0.22 #The tip is still a double total2 = price2 + price2 * tip2 print(total2)