반응형
x = int(input())
y = int(input())
if x > 0 and y > 0:
print('1')
elif x < 0 < y:
print('2')
elif x < 0 and y < 0:
print('3')
elif x > 0 > y:
print('4')
// 결과
// 입력값
1
1
// 출력값
1
// 입력값
-1
-1
// 출력값
3
반응형
'Algorithm > baekjoon' 카테고리의 다른 글
[백준 2525 파이썬/python] 오븐 시계 (0) | 2023.02.28 |
---|---|
[백준 2884 파이썬/python] 알람 시계 (0) | 2023.02.28 |
[백준 2753 파이썬/python] 윤년 (0) | 2023.02.28 |
[백준 9498 파이썬/python] 시험 성적 (0) | 2023.02.28 |
[백준 1330 파이썬/python] 두 수 비교하기 (0) | 2023.02.27 |