import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int X = sc.nextInt();
int Y = sc.nextInt();
sc.close();
if (X > 0 && Y > 0)
System.out.println(1);
else if (X < 0 && Y > 0)
System.out.println(2);
else if (X < 0 && Y < 0)
System.out.println(3);
else
System.out.println(4);
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[백준] 2525번 (0) | 2022.12.25 |
---|---|
[백준] 2884번 (0) | 2022.12.24 |
[백준] 2753번 (0) | 2022.12.24 |
[백준] 9498번 (0) | 2022.12.24 |
[백준] 1330번 (0) | 2022.12.24 |