#This is my PYTHON programimport mathx1 = 2.6x2 = 2.8a = 3b = 6c = (math.pow(x2, 2) + math.pow(x1, 2) - a) / (x1 + b)print("Result c =", round(c, 4))
Standard input is empty
('Result c =', 1.3488)
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!