Лови:)a = float(input("Введіть суму покупки: "))
if a > 3000:
discount = a * 0.03
print("Вам надається знижка в розмірі", discount, "грн")
else:
print("Знижка не надається")
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Лови:)
a = float(input("Введіть суму покупки: "))
if a > 3000:
discount = a * 0.03
print("Вам надається знижка в розмірі", discount, "грн")
else:
print("Знижка не надається")