<백준 문제풀이 - 14681번> 파이썬 - 사분면 고르기
이번 문제도 쉬운 문제이다. 단순하게 if문으로 조건문 몇개만 추가하면 된다: import sys A = int(sys.stdin.readline()) B = int(sys.stdin.readline()) if A != 0 and B != 0: if A > 0 and B > 0: print(1) elif A > 0 and B 0: print(2) elif A < 0 and B < 0: print(3)