power-girl0-0

[ 14681 ] 사분면 고르기 본문

백준 알고리즘/python

[ 14681 ] 사분면 고르기

power-girl0-0 2021. 2. 28. 02:55
728x90

x = int(input())
y = int(input())

if(x>=0 and y>=0):
    print(1)
elif(x<0 and y>=0):
    print(2)
elif(x<0 and y<0):
    print(3)
elif(x>=0 and y<0):
    print(4)
728x90

'백준 알고리즘 > python' 카테고리의 다른 글

[ 2739 ] 구구단  (0) 2021.02.28
[ 2884 ] 알람 시계  (0) 2021.02.28
[ 2753 ] 윤년  (0) 2021.02.28
[ 9498 ] 시험 성적  (0) 2021.02.28
[ 1330 ] 두 수 비교하기  (0) 2021.02.28
Comments