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/thewolves/attachments/template.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 problems/thewolves/attachments/template.cpp (limited to 'problems/thewolves/attachments/template.cpp') diff --git a/problems/thewolves/attachments/template.cpp b/problems/thewolves/attachments/template.cpp new file mode 100644 index 0000000..36383f8 --- /dev/null +++ b/problems/thewolves/attachments/template.cpp @@ -0,0 +1,18 @@ +#include +#include +#include +#include + +using namespace std; + +int main() +{ + int gray_wolves; + int black_wolves; + cin >> gray_wolves >> black_wolves; cin.ignore(); + + // Write an answer using cout. DON'T FORGET THE "<< endl" + // To debug: cerr << "Debug messages..." << endl; + + cout << "answer" << endl; +} -- cgit v1.2.3