Submission

Status:

xxxxxxxxxx

Subtask/Task Score:

0/100

Score: 0

User: agnes_chan

Problemset: ลูกเต๋า

Language: python

Time: 0.000 second

Submitted On: 2026-05-06 09:49:40

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