Add exotemplate

This commit is contained in:
Gabriel Augendre 2019-11-26 20:57:33 +01:00
parent b7728a925b
commit c8f735076c
No known key found for this signature in database
GPG Key ID: 1E693F4CE4AEE7B4
1 changed files with 11 additions and 0 deletions

11
exotemplate.py Normal file
View File

@ -0,0 +1,11 @@
import sys
def main():
lines = []
for line in sys.stdin:
lines.append(line.rstrip("\n"))
if __name__ == "__main__":
main()