When performing calculations on linear equations, finding the intersection point of two lines is a very common task. Write a program that takes two linear equations in the form of $$$y=mx+b$$$ and outputs the $$$x$$$ coordinate at which the two lines intersect.
The first line contains two floating point values representing the $$$m$$$ and $$$b$$$ values of the first linear equation respectively. The second line contains the two variables corresponding to the $$$m$$$ and $$$b$$$ variables of the second linear equation.
A single floating point value that represents the $$$x$$$ coordinate at which the two lines intersect.
5 3 -6 -20
-2.090909090909091
Assume that all test cases contain lines that do intersect.