aboutsummaryrefslogtreecommitdiff
path: root/problems/cellsdoctor/attachments/template.java
blob: 34aa8be57dfe2bd6b3cbf1e651b23d405fb41c18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import java.util.*;
import java.io.*;
import java.math.*;

class Solution {

    public static void main(String args[]) {
        Scanner in = new Scanner(System.in);
        int iteration = in.nextInt();
        int size = in.nextInt();
        if (in.hasNextLine()) {
            in.nextLine();
        }
        for (int i = 0; i < size; i++) {
            String ROW = in.nextLine();
        }
    }
}