x = float(input('x = ')) y = float(input('y = ')) z = float(input('z = ')) a = (2 * x + y - z) / (3 + x * x) print('a =', a)