import math
def find_x(y):x = math.sqrt(y)return x
y = float(input("Введите значение y: "))x = find_x(y)
print(f"Значение x при y = {y} равно {x}")
import math
def find_x(y):
x = math.sqrt(y)
return x
y = float(input("Введите значение y: "))
x = find_x(y)
print(f"Значение x при y = {y} равно {x}")