from math import sqrt
a, b, c = int(input("Введіть a: ")), int(input("Введіть b: ")), int(input("Введіть c: "))
x = (sqrt(abs(a + 1)) - sqrt(abs(b - 2)))/(3 + pow(c, 3)/2 + pow(b, 2)/4)
y = sqrt((a*b*c)/3 + abs(a - b))
print("x =", x)
print("y =", y)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
from math import sqrt
a, b, c = int(input("Введіть a: ")), int(input("Введіть b: ")), int(input("Введіть c: "))
x = (sqrt(abs(a + 1)) - sqrt(abs(b - 2)))/(3 + pow(c, 3)/2 + pow(b, 2)/4)
y = sqrt((a*b*c)/3 + abs(a - b))
print("x =", x)
print("y =", y)