There are two pairs of points given by the coordinates. I have to create two lines out of those pairs of points, and to calculate the point of intersection of those lines.
This can be instance of how the points are given.
A1 = {2, 2};
A2 = {2, 4};
A3 = {3, 1};
A4 = {4, 3};
Graphics[{Line[{A1, A2}], Line[{A3, A4}]}]