def y(x0):
return 3 * (x0 - 2)**3 + 5 * (x0 - 4)**2 - 7
x = int(input())
print(y(x))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
def y(x0):
return 3 * (x0 - 2)**3 + 5 * (x0 - 4)**2 - 7
x = int(input())
print(y(x))