ch01_ex121_1_prof.py

Created by manuel-2de-indice2019

Created on October 09, 2019

134 Bytes


def bou(n):
    while n!=20:
        if n<20:
            n=2*n
        else:
            n=n-4
    return(n)