Check if the given vectors are at equilibrium or not
Given the x, y and z coordinates of three vectors, the task is to check if they are at equilibrium or not.Examples: Input: x1 = -2, y1 = 1, z1 = 0, x2 = 5, y2 = 0, z2 = 5, x3 = -3, y3 = -1, z3 = -5 Output: The vectors are at equilibrium.Input: x1 = 2, y1 = -17, z1 = 0, x2 = 5, y2 = 1, z2 = -5, x3 =