summaryrefslogtreecommitdiff
path: root/progs/a842.py
blob: 6759e3e805bf0356f85cf85179b7b8cf9073523c (plain)
1
2
3
4
def first_Digit(n) :  
    while n >= 10:  
        n = n / 10; 
    return int(n)