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

using namespace std;

int main()
{
    int r;
    cin >> r; cin.ignore();

    // Write an answer using cout. DON'T FORGET THE "<< endl"
    // To debug: cerr << "Debug messages..." << endl;

    cout << "duration" << endl;
}