import random

omikuji = ["大吉", "中吉", "小吉", "吉", "凶"]
draw = random.randint(0, 4)

print(omikuji[draw])