Відповідь:
Снизу
Пояснення:
def solution(a, c):
return (a + 4 * c) / (2 * c + a)
num1 = int(input("Введіть перше число: "))
num2 = int(input("Введіть друге число: "))
print(solution(num1, num2))
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:
Снизу
Пояснення:
def solution(a, c):
return (a + 4 * c) / (2 * c + a)
num1 = int(input("Введіть перше число: "))
num2 = int(input("Введіть друге число: "))
print(solution(num1, num2))