Ответ:
Python:
a, b, c, d = map(float, input("Enter a, b, c and d values.\n>> ").split())
res = (a + c) * (d + 5*b)
print("Result:",res)
Объяснение:
Сподіваюсь що допомогла.
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Python:
a, b, c, d = map(float, input("Enter a, b, c and d values.\n>> ").split())
res = (a + c) * (d + 5*b)
print("Result:",res)
Объяснение:
Сподіваюсь що допомогла.