import math
def A(b,x,y):
a=(b+y*math.fabs(x-3)**2)/(math.sin(x)**2-math.sqrt((1-x)/math.cos(x)))
return a
b=int(input('Введите b:'))
x=int(input('Введите x:'))
y=int(input('Введите y:'))
print(A(b,x,y))
import math
def A(b,x,y):
a=(b+y*math.fabs(x-3)**2)/(math.sin(x)**2-math.sqrt((1-x)/math.cos(x)))
return a
b=int(input('Введите b:'))
x=int(input('Введите x:'))
y=int(input('Введите y:'))
print(A(b,x,y))