#!/usr/bin/env python3; ############################################################################### # This program reads bytes from STDIN and prints them in decimal format. # # Copyright © 2020 Richard Lesh. All rights reserved. ############################################################################### import Utils import sys # Begin Main count = 0 c = Utils.getbyte(sys.stdin) while c != None : print(str(c) + " ", end="") count += 1 if (count % 20 == 0) : print() c = Utils.getbyte(sys.stdin) if (count % 20 != 0) : print()