-
코드
a = int(input()) b = int(input()) if a < 0 and b < 0: print("3") elif a > 0 and b < 0: print("4") elif a > 0 and b > 0: print("1") else: print("2")
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 2739번 구구단 (파이썬) (0) 2021.12.24 [백준] 2884번 알람 시계 (파이썬) (0) 2021.12.24 [백준] 2753번 윤년 (파이썬) (0) 2021.12.24 [백준] 9498번 시험 성적 (파이썬) (0) 2021.12.24 [백준] 1330번 두 수 비교하기 (파이썬) (0) 2021.12.24