1 2 3 4 5 6 7 8 9
#!/usr/bin/env python2 import sys if __name__ == "__main__": for line in sys.stdin: print line.upper()