def multiples(): compt=0 for i in range(1,1001): if i%11==0: compt = compt+1 return(compt)