﻿from random import *

def lancer_de(n):
  c=0
  for k in range(n):
    r=randint(1,4)
    if r==1:
      c=c+1
  return(c/n)

