Accept a point in 2D space as input and find the region in space that this point belongs to. A point could belong to one of the four quadrants, or it could lie on one of the two axes, or it could be the origin.
Input
Two lines. The first line is the x-coordinate of the point, the second line is its y-coordinate. Both are real numbers.
Output
A single line, one of: first, second, third, fourth, x-axis, y-axis,
origin. Any other output will not be accepted. All outputs are in lower case.
Example
Input:
3
4
Output:
first
Write a complete program: read the input with input() and print the result with print().
Input
3
4
Output
first