print ("Введите x,y,z:")
x = int(input())
y = int(input())
z = int(input())
s = (7*x-12*y**3)/(45+2*z**2)
print ("Ответ:", s)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
print ("Введите x,y,z:")
x = int(input())
y = int(input())
z = int(input())
s = (7*x-12*y**3)/(45+2*z**2)
print ("Ответ:", s)