resolver el siguiente sistema de ecuaciones lineales: 1. (x/4) - (y/8) - (z/2)= 1 2. (x/3) -( y/2) +( z/2) = 8/3 3. (x/6) - (y/6) -(z/3) = 1
def system(a, b, c): return a / 4 - b / 8 + c / 16 def main(): a = int(input("Enter a:")) b = int(input("Enter b:")) c = int(input("Enter c:")) print(system(a, b, c)) main() A: You can use the operator module