# HG changeset patch # User HackBot # Date 1440887262 0 # Node ID de0ac7e571e85ad442bf92c76293b851504bf22e # Parent 6f6a6ced6d1796cd08065f2942643701c2e67e67 sed -i \'s/raw_input()/sys.stdin.read()/\' bin/loudly diff -r 6f6a6ced6d17 -r de0ac7e571e8 bin/loudly --- a/bin/loudly Sat Aug 29 22:26:18 2015 +0000 +++ b/bin/loudly Sat Aug 29 22:27:42 2015 +0000 @@ -1,5 +1,5 @@ #!/usr/bin/env python import sys, itertools -inp = raw_input() or sys.argv[1] +inp = sys.stdin.read() or sys.argv[1] cyc = itertools.cycle(["\00304,09","\00309,04"]) print "".join(cyc.next() + c for c in inp)