#!/usr/bin/python3

import random

N = 1000
pocty = [0]*6

for _ in range(N):
    hod = random.randrange(6)
    pocty[hod] += 1

print(pocty)