Submission

Status:

xxxxxPPxxx

Subtask/Task Score:

20/100

Score: 20

User: agnes_chan

Problemset: ลูกเต๋า

Language: python

Time: 0.010 second

Submitted On: 2026-05-06 09:56:07

dc = ["|   |   | * |* *|* *|* *|".split('|')]
dc += ["| * |* *| * |   | * |* *|".split('|')]
dc += ["|   |   | * |* *|* *|* *|".split('|')]
txt = list(map(int,list(input().strip())))
if min(txt)<1 or max(txt)>6:
    print("ERROR")
    exit()
for i in range(3):
    print('|'.join(dc[j-1] for j in txt))