binary = '0111011101111000'
len = len(binary) / 8
x = 0
while (len > 0):
    print (binary[x:x+8])
    x = x + 8
    len = len - 1