

"1st Quadrant": if +x,+y
"2nd Quadrant": if -x,+y
"3rd Quadrant": if -x,-y
"4th Quadrant": if +x,-y
"x axis": if x,0
"y axis": if 0,y
"Origin": if 0,0
The only line of input contains two integers separated by a single space.
The only line of the output prints the Position of the point in the coordinate system.
Take input of x and y coordinates in variable x and y respectively.
if ( x > 0 && y > 0) print 1st Quadrant
else if (x < 0 && y > 0) print 2nd quadrant
else if (x < 0 && y < 0) print 3rd quadrant
else if (x > 0 && y < 0) print 4th quadrant
else if (x == 0 && y == 0) print origin
else if ( x == 0 && y ≠ 0) print y-axis
else print x-axis.
Special Numbers
Minimum Operations To Make Array Equal
Ninja's Encryption
Minimum Window Subsequence
Minimum Window Subsequence
Minimum Window Subsequence
Minimum Window Subsequence
Minimum Window Subsequence
Minimum Window Subsequence
Fizzbuzz Problem