From b300254ee1f308c440d8e8d8129fb863b6ec9599 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 30 Dec 2012 16:05:36 +0330 Subject: Making the legacy more useful Added a brief installation guide in README along with etc config file samples. Added a couple of useful start and kill scripts in utils folder. Added two sample problems (one normal one interactive) along with testers in utils folder. --- problems/hellow/hellow.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 problems/hellow/hellow.cpp (limited to 'problems/hellow/hellow.cpp') diff --git a/problems/hellow/hellow.cpp b/problems/hellow/hellow.cpp new file mode 100644 index 0000000..f1255ce --- /dev/null +++ b/problems/hellow/hellow.cpp @@ -0,0 +1,12 @@ +#include + +using namespace std; + +int main() +{ + int n; + cin >> n; + cout << 3 * n << endl; + return 0; +} + -- cgit