I am an extreme beginner with python and I was wondering what is wrong with this program I set up to calculate tips
total = input("What is the bill total? ")
tperc = input("Would you like to give a 15% or 20% tip? ")
tip15 = total * .15
tip20 = total * .20
if tperc == "15":
print("\nThat would be a $" + tip15 + "tip.")
if tperc == "15%":
print("\nThat would be a $" + tip15 + "tip.")
if tperc == "20":
print("\nThat would be a $" + tip20 + "tip.")
if tperc == "20%":
print("\nThat would be a $" + tip20 + "tip.")
input("\nPress enter to exit.")
Thanks for the help