aboutsummaryrefslogtreecommitdiff
path: root/problems/whoisleading/attachments/template.cpp
blob: 8162bcbcf2fec5aaca139f04c755645c24c927f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>

using namespace std;

int main()
{
    string teams;
    getline(cin, teams);
    string scores_1;
    getline(cin, scores_1);
    string scores_2;
    getline(cin, scores_2);
    for (int i = 0; i < 2; i++) {

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

        cout << "Team name: score minutes_leading" << endl;
    }
}