Submission
Status:
PPPPPPPPPP
Subtask/Task Score:
100/100
Score: 100
User: agnes_chan
Problemset: ลูกเต๋า
Language: python
Time: 0.011 second
Submitted On: 2026-05-06 10:03:53
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[i][j-1] for j in txt))