Submission
Status:
-----PP---
Subtask/Task Score:
20/100
Score: 20
User: agnes_chan
Problemset: ลูกเต๋า
Language: python
Time: 0.012 second
Submitted On: 2026-05-06 10:01:35
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))