Question: 
Write a python function to check whether the given two numbers have same number of digits or not.


Model's Code:
def same_Length(a, b):
    return len(str(a)) == len(str(b))



Sample Correct Code:
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; 


Asserts:
assert same_Length(12,1) == False
assert same_Length(2,2) == True
assert same_Length(10,20) == True


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 891 of 974: 685/891 (76.87991021324355%): success