write a program to input amount and display its 10% discount u.s.i.n.g p.y.t.h.o.n
i will mark as brainliest.
Answers
Answered by
1
Answer:
program to display the discount and the reduced price
Explanation:
amount_1 =int(input("please enter the amount "))
discount=(10/100)*amount_1
reduced_price=amount_1 - discount
print(discount)
print(reduced_price)
Hope this helps you bro
pls mark as brainliest
thanks :)
Similar questions