ch01_ex92_prof.py

Created by manuel-2de-indice2019

Created on October 11, 2019

101 Bytes


def nenu(a):
    h=0
    while a<=10:
        a=2*a
        h=h+1
    return(h)