summaryrefslogtreecommitdiff
path: root/progs/a399.py
blob: c15f0edad4accff8544bb007648886e19a129dce (plain)
1
2
3
4
5
6
7
def find_Nth_Digit(p,q,N) :  
    while (N > 0) : 
        N -= 1;  
        p *= 10;  
        res = p // q;  
        p %= q;  
    return res;