Write a program to print the bill on a purchase if the discount is given as Rs. 10
Answers
Answered by
0
Answer:
Bill = int(input ("Enter price of bill: "))
discount = 10
final_price = Bill - discount
print ("The final bill is", final_price)
Similar questions