import random def create(): l = [] for i in range(10): a = random.randint(0,100) l.append(a) debug(l) return l def len(mass): temp=0 for i,j in enumerate(mass): temp+=1 return temp def max(mass): temp=0 for i,j in enumerate(mass): if temp