Add exotemplate
This commit is contained in:
parent
b7728a925b
commit
c8f735076c
1 changed files with 11 additions and 0 deletions
11
exotemplate.py
Normal file
11
exotemplate.py
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
import sys
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
lines = []
|
||||||
|
for line in sys.stdin:
|
||||||
|
lines.append(line.rstrip("\n"))
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
Loading…
Reference in a new issue