https://www.acmicpc.net/problem/14681
소스코드:
x=int(input())
y=int(input())
if(x>0 and y>0):
print("1")
elif(x>0 and y<0):
print("4")
elif(x<0 and y>0):
print("2")
else:
print("3")
'Koala - 6기 > 기초 알고리즘 스터디' 카테고리의 다른 글
[백준/python]10950번: A+B-3 (0) | 2022.03.13 |
---|---|
[백준/python] 4493번: 가위 바위 보? (0) | 2022.03.13 |
[백준/python] 10886번: 0 = not cute / 1 = cute (0) | 2022.03.12 |
[백준/Python] 10797번: 10부제 (0) | 2022.03.11 |
[백준/c++] 2742번: 기찍 N (0) | 2022.03.11 |