diff options
Diffstat (limited to 'template/python.py')
-rw-r--r-- | template/python.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/template/python.py b/template/python.py new file mode 100644 index 0000000..48a639b --- /dev/null +++ b/template/python.py @@ -0,0 +1,11 @@ +#/usr/bin/env python3 + +from fileinput import input + +lines = [line.strip() for line in input()] + +silver = 0 +gold = 0 + +print("silver:", silver) +print("gold:", gold) |