summaryrefslogtreecommitdiff
path: root/progs/a290.py
blob: 98bab92a4e876e2cf0e90991d43d5bd8b7a9cdc1 (plain)
1
2
3
4
5
6
7
def same_Length(A,B): 
    while (A > 0 and B > 0): 
        A = A / 10; 
        B = B / 10; 
    if (A == 0 and B == 0): 
        return True; 
    return False;