ch01_tp1_a_prof.py

Created by manuel-2de-indice2019

Created on October 11, 2019

149 Bytes


def kap(n,p):
    for i in range(p):
        b=n%10
        a=(n-b)//10
        nn=10*b+a
        n=abs(n-nn)
        print(n)