write a program that will accept the bill of a customer and add 5.5%
Answers
Answered by
2
Bill=int(input("enter the bill::"))
Tax=5.5/100*Bill+Bill
print("Total Bill is::",Tax)
Attachments:
![](https://hi-static.z-dn.net/files/d65/29e6af0b70c5455798142feca310afd5.jpg)
Answered by
1
Answer:
Bill=int(input("enter the bill::"))
Tax=5.5/100*Bill+Bill
print("Total Bill is::",Tax)Bill=int(input("enter the bill::"))
Tax=5.5/100*Bill+Bill
print("Total Bill is::",Tax)
Similar questions