to = float(input("Введите сумму вклада"))
if to >= 450000:
up = (to/100)*15.2
elif to >= 300000:
up = (to/100)*12.5
print(up, "тг./г.")
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
to = float(input("Введите сумму вклада"))
if to >= 450000:
up = (to/100)*15.2
elif to >= 300000:
up = (to/100)*12.5
print(up, "тг./г.")