728x90
#include <iostream>
using namespace std;
int main() {
int x, y;
cin >> x >> y;
if (x > 0 && y > 0)
cout << "1";
else if (x < 0 && y>0)
cout << "2";
else if (x < 0 && y < 0)
cout << "3";
else
cout << "4";
return 0;
}
'BEAKJOON' 카테고리의 다른 글
백준(2739번 구구단)풀이 C++ (0) | 2020.12.02 |
---|---|
백준(2884번 알람 시계)풀이 C++ (0) | 2020.12.02 |
백준(2753번 윤년)풀이 C++ (0) | 2020.12.02 |
백준(9498번 시험 성적)풀이 C++ (0) | 2020.12.01 |
백준(1330번 두 수 비교하기)풀이 C++ (0) | 2020.12.01 |