﻿from random import *

def L():
    n=1
    x=randint(1,6)
    while x!=6:
        n=n+1
        x=randint(1,6)
    return n

