From 3496b0ed08c51e37e135e686b1632fd86f930c2c Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Mon, 30 Sep 2024 16:08:27 +0530 Subject: (init): Initialize repository. --- problems/pixelpolygons/attachments/template.cpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 problems/pixelpolygons/attachments/template.cpp (limited to 'problems/pixelpolygons/attachments/template.cpp') diff --git a/problems/pixelpolygons/attachments/template.cpp b/problems/pixelpolygons/attachments/template.cpp new file mode 100644 index 0000000..f170242 --- /dev/null +++ b/problems/pixelpolygons/attachments/template.cpp @@ -0,0 +1,21 @@ +#include +#include +#include +#include + +using namespace std; + +int main() +{ + int n; + cin >> n; cin.ignore(); + for (int i = 0; i < n; i++) { + string line; + getline(cin, line); + } + + // Write an answer using cout. DON'T FORGET THE "<< endl" + // To debug: cerr << "Debug messages..." << endl; + + cout << "number_of_sides" << endl; +} -- cgit v1.2.3