Question: Write a program that reads the (x,y) coordinates of a point in the Cartesian plane and prints a message telling in which quadrant, or on which axis (or axes) the point lies. The quadrants are labeled as follows:
Your program should interact with the user in exactly this manner:
Enter the coordinates=> 2.5 -3.4
(2.5, -3.4) is in quadrant IV
or
Enter the coordinates=> 0 -3.4
(0.0, -3.4) is on the y axis
Please keep it simple and short and no copy and paste or at least help me get started?