• + 0 comments

    cannot pass one test case. cant understand why.

    n = int(input()) for i in range(n): num = input() if num[0] in ['7','8','9'] and len(num)==10: c = 0 for j in num: if ord(j) not in range(48,58): c += 1 print('NO') if c == 0: print('YES')

    else:
        print('NO')