aboutsummaryrefslogtreecommitdiff
path: root/problems/cellsdoctor/attachments/template.cpp
blob: 12215d401f7ede3fd171329cf307cf806bab61d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>

using namespace std;

int main()
{
    int iteration;
    cin >> iteration; cin.ignore();
    int size;
    cin >> size; cin.ignore();
    for (int i = 0; i < size; i++) {
        string row;
        getline(cin, row);
    }
}