← Back to List

9772번: Quadrants ↗

Solutions

Python 3
310 B | 310 chars
while 1:
    x, y = map(float, input().split())

    if x > 0 and y > 0:
        print("Q1")

    if x > 0 and y < 0:
        print("Q4")

    if x < 0 and y > 0:
        print("Q2")

    if x < 0 and y < 0:
        print("Q3")

    if x == 0 or y == 0:
        print("AXIS")

    if x == y == 0:
        break