ch01_ex37_prof.py

Created by manuel-2de-indice2019

Created on October 11, 2019

74 Bytes


def nbr(N):
    a=N%10
    b=(N-a)//10
    return(b)