백준 14681

import java.util.Scanner;
class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        
        int a = sc.nextInt();
        int b = sc.nextInt();
        
        if(a>0 && b>0){
            System.out.println(1);
        } else if (a<0 && b>0){
            System.out.println(2);
        } else if (a<0 && b<0){
            System.out.println(3);
        } else if (a>0 && b<0){
            System.out.println(4);
        }
        sc.close();
    }
}

이번 내용도 크게 다른 내용은 없습니다.

 

다만 출력값만 한 번 더 확인하고 출력하시면 됩니다.