본문 바로가기
백준문제/새싹

백준) 14681번 - python

by kiseno 2024. 2. 4.
728x90
반응형
SMALL
a = int(input())
b = int(input())

if a>0 and b>0:
    print("1")
elif a>0 and b<0:
    print("4")
elif a<0 and b>0:
    print("2")
else:
    print("3")
728x90
반응형
LIST

'백준문제 > 새싹' 카테고리의 다른 글

백준) 11654번 - python  (0) 2024.02.05
백준) 10952번 - python  (0) 2024.02.03
백준) 10872번 - python  (1) 2024.02.02
백준) 10871번 - python  (1) 2024.02.01
백준) 9086번 - python  (1) 2024.01.31