#include <iostream>
using namespace std;
int main(void)
{
int X = 0;
int Y = 0;
cin >> X >> Y;
if ((X>=-1000 and X<=1000) and (X!=0) and (Y>=-1000 and Y<=1000) and (Y!=0))
{
if (X>0 and Y>0)
cout << "1" << endl;
if (X<0 and Y>0)
cout << "2" << endl;
if (X<0 and Y<0)
cout << "3" << endl;
if (X>0 and Y<0)
cout << "4" << endl;
}
return 0;
}
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 14889번 스타트와 링크 (파이썬) (0) | 2022.06.29 |
---|---|
[백준] 14888번 연산자 끼워넣기 (파이썬) (0) | 2022.06.29 |
[백준] 14501번 퇴사 (파이썬) (0) | 2022.06.29 |
[백준] 13305번 주유소 (파이썬) (0) | 2022.06.29 |
[백준] 12904번 A와 B (파이썬) (0) | 2022.06.28 |