fork download
def f(x):
    d=0
    y=1
    while y <= x:
        d=d+1
        y=y*3
    return(d)
Success #stdin #stdout 0.05s 9564KB
stdin
2343
stdout
Standard output is empty