diff options
author | mhsn <mail@mhsn.net> | 2025-09-12 20:54:52 +0100 |
---|---|---|
committer | mhsn <mail@mhsn.net> | 2025-09-12 20:55:22 +0100 |
commit | c1a41296795d6faeca4811689563293ed936a80e (patch) | |
tree | 3dea282a10acffe9117dc6d2ccb27510eb52c014 | |
parent | 6b733982f9f240c1c97f1fa705bfbe4cd93c640e (diff) | |
download | aoc-c1a41296795d6faeca4811689563293ed936a80e.tar.gz aoc-c1a41296795d6faeca4811689563293ed936a80e.zip |
update template/python
-rw-r--r-- | template/python.py (renamed from template/main.py) | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/template/main.py b/template/python.py index 9f1d48e..48a639b 100644 --- a/template/main.py +++ b/template/python.py @@ -1,3 +1,5 @@ +#/usr/bin/env python3 + from fileinput import input lines = [line.strip() for line in input()] |