출처: https://meyouus.tistory.com/64 [정보 공유 - For Me For You For Us]
본문으로 바로가기

 

이번 문제도 쉬운 문제이다. 단순하게 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(4)
	elif A < 0 and B > 0:
		print(2)
	elif A < 0 and B < 0:
		print(3)