from random import randint

count = 0

for i in range(...):
    d = randint(1,6)
    if d == ...:
        count = count + 1

print( count )
