Ответ:
import math
x = eval(input('x равен: '))
y = eval(input('y равен: '))
result = (math.cos(x)/math.pi-2*x)+16*x*math.cos(x*y)
print(result)
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
import math
x = eval(input('x равен: '))
y = eval(input('y равен: '))
result = (math.cos(x)/math.pi-2*x)+16*x*math.cos(x*y)
print(result)