python-algorithm

[백준] 14681

무적김두칠 2020. 12. 16. 10:17

1
2
3
4
5
6
= int(input())
b=int (input())
if a>0 and b>0 : print(1)
if a>0 and b<0 : print(4)
if a<0 and b>0 : print(2)
if a<0 and b<0 : print(3)
cs
반응형