Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #! /usr/bin/env python3
  2. # coding=utf-8
  3.  
  4. import sys
  5.  
  6.  
  7. def main():
  8. for line in sys.stdin:
  9. process(line)
  10.  
  11.  
  12. def process(line):
  13. sys.stdout.write(line)
  14.  
  15.  
  16. if __name__ == "__main__":
  17. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement