diff options
Diffstat (limited to 'problems/partitionnumbers/attachments/template.cpp')
-rw-r--r-- | problems/partitionnumbers/attachments/template.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/problems/partitionnumbers/attachments/template.cpp b/problems/partitionnumbers/attachments/template.cpp new file mode 100644 index 0000000..4fa1657 --- /dev/null +++ b/problems/partitionnumbers/attachments/template.cpp @@ -0,0 +1,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; +} |