Бабуся прийняла участі у розігряші і отримала прис ополату комунальних послух за місяць за умови якщо вона становить 1 тис грн підготувати платіжні документи. розподільть кошти таким чином шо оплата за опалення становить 47 відцотків від суми виграшу водо постачання 20 відцотків від виграшу за газ 15 відцотків від решти залишок жкг
Ответы
Ответ:
# This program calculates the amount of money the grandmother paid for each utility bill.
# Get the winning amount.
winning_amount = float(input("How much money did the grandmother win? "))
# Calculate the amount of money paid for heating.
heating_amount = winning_amount * 0.47
# Calculate the amount of money paid for water supply.
water_supply_amount = winning_amount * 0.20
# Calculate the amount of money paid for gas.
gas_amount = winning_amount * 0.15
# Calculate the amount of money paid for other expenses.
other_expenses_amount = winning_amount - heating_amount - water_supply_amount - gas_amount
# Print the results.
print(f"The grandmother paid UAH {heating_amount} for heating.")
print(f"The grandmother paid UAH {water_supply_amount} for water supply.")
print(f"The grandmother paid UAH {gas_amount} for gas.")
print(f"The grandmother paid UAH {other_expenses_amount} for other expenses.")