Computer Science, asked by peacemnhaq7, 1 month ago

Write a program to print the bill on a purchase if the discount is given as Rs. 10

Answers

Answered by madhalaimuthucharlas
0

Answer:

Bill = int(input ("Enter price of bill: "))

discount = 10

final_price = Bill - discount

print ("The final bill is", final_price)

Similar questions