p, k = map(int, input().split()) MOD = 10 ** 9 + 7 ans = 10 ** (p - 1) // p x = 10 ** (p - 1) % p if x > k: ans += 1 print(ans%MOD)