백준 14681번 사분면 고르기 파이썬

2022.03.07 16:22

백준 14681번 사분면 고르기 파이썬 코드이다.

x = int(input())
y = int(input())
if x > 0:
    if y > 0:
        print(1)
    else:
        print(4)
else:
    if y > 0:
        print(2)
    else:
        print(3)

백준 관련 글

더보기