x, y = input().split()
x = int(x)
y = int(y)

x != 0
y != 0

if x > 0 and y > 0:
    print("1")
elif x < 0 and y > 0:    
    print("2")
elif x < 0 and y < 0:
    print("3")
elif x > 0 and y < 0:
    print("4")

https://www.acmicpc.net/problem/14681 << 이 문제


요거 백준에 올리니까 런타임에러 뜨던데


왜 그럼?? ㅜㅜㅜㅜ


검색해 보니까 0 때문이라고 그러길래 0 아니라고 살포시 해놨는뎅 ㅠㅠㅠㅠㅠ