aboutsummaryrefslogtreecommitdiff
path: root/problems/starshiplaunchcodes/attachments/template.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'problems/starshiplaunchcodes/attachments/template.cpp')
-rw-r--r--problems/starshiplaunchcodes/attachments/template.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/problems/starshiplaunchcodes/attachments/template.cpp b/problems/starshiplaunchcodes/attachments/template.cpp
new file mode 100644
index 0000000..5bf1d30
--- /dev/null
+++ b/problems/starshiplaunchcodes/attachments/template.cpp
@@ -0,0 +1,17 @@
+#include <iostream>
+#include <string>
+#include <vector>
+#include <algorithm>
+
+using namespace std;
+
+int main()
+{
+ int s;
+ cin >> s; cin.ignore();
+
+ // Write an answer using cout. DON'T FORGET THE "<< endl"
+ // To debug: cerr << "Debug messages..." << endl;
+
+ cout << "code(s)" << endl;
+}