import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int T = scanner.nextInt();
        int M , N , x , y ;

        for(int i = 0 ; i < T ; i ++)
        {
            M = scanner.nextInt();
            N = scanner.nextInt();
            x = scanner.nextInt();
            y = scanner.nextInt();

        }
    }
}

/*
예제
3
10 12 3 9   -> 33
10 12 7 2   -> -1
13 11 5 6   -> 83


*/

'개인 공부 > 백준' 카테고리의 다른 글

1406번 에디터  (0) 2024.04.01
2493번 탑  (0) 2024.03.30
10808번 알파벳 개수  (0) 2024.03.27
2503번] 숫자 야구  (0) 2023.09.06
[백준] 별 찍기 - 16  (1) 2023.05.26

+ Recent posts