Вирішити приклад в python
4(x+y)-(2y+2x)

Ответы

Ответ дал: ILFV183
1

x, y = int(input('x = ')), int(input('y = '))

res = 4 * (x + y) - (2 * y + 2 * x)

print(res)

Вас заинтересует