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

using namespace std;

int main()
{
    int t;
    cin >> t; cin.ignore();
    for (int i = 0; i < t; i++) {
        int n;
        cin >> n; cin.ignore();
    }

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

    cout << "partitions" << endl;
}