summaryrefslogtreecommitdiff
path: root/template/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'template/main.py')
-rw-r--r--template/main.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/template/main.py b/template/main.py
new file mode 100644
index 0000000..9f1d48e
--- /dev/null
+++ b/template/main.py
@@ -0,0 +1,9 @@
+from fileinput import input
+
+lines = [line.strip() for line in input()]
+
+silver = 0
+gold = 0
+
+print("silver:", silver)
+print("gold:", gold)