#include using namespace std; using uint = unsigned int; using lint = long long int; using ulint = unsigned long long int; template using V = vector; template using VV = V< V >; template void assign(V& v, int n, const U& a) { v.assign(n, a); } template void assign(V& v, int n, const Args&... args) { v.resize(n); for (auto&& e : v) assign(e, args...); } template constexpr bool is_prime(Int n) { if (n < 2 or n > 2 and ~n & 1) return false; for (Int i = 3; i * i <= n; i += 2) if (n % i == 0) return false; return true; } template struct ModInt { static_assert(is_prime(P), "template argument must be a prime number"); using M = ModInt; uint v; ModInt() : v(0) {} template ModInt(Int x) : v(x >= 0 ? x % P : -x % P ? P - -x % P : 0) {} constexpr ModInt(uint v, int _) : v(v) {} // 直接値を初期化 static constexpr uint p() { return P; } M operator++(int) { M t = *this; if (++v == P) v = 0; return t; } M operator--(int) { M t = *this; v = (v ? v : P) - 1; return t; } M& operator++() { if (++v == P) v = 0; return *this; } M& operator--() { v = (v ? v : P) - 1; return *this; } M operator+() const { return *this; } M operator-() const { return {v ? P - v : 0, 0}; } explicit operator bool() const noexcept { return v; } bool operator!() const noexcept { return !static_cast(*this); } M operator*(M rhs) const { return M(*this) *= rhs; } M operator/(M rhs) const { return M(*this) /= rhs; } M operator+(M rhs) const { return M(*this) += rhs; } M operator-(M rhs) const { return M(*this) -= rhs; } bool operator==(M rhs) { return v == rhs.v; } bool operator!=(M rhs) { return !(*this == rhs); } M& operator*=(M rhs) { v = (ulint) v * rhs.v % P; return *this; } M& operator/=(M rhs) { return *this *= rhs.inv(); } M& operator+=(M rhs) { v = rhs.v < P - v ? v + rhs.v : v - (P - rhs.v); return *this; } M& operator-=(M rhs) { v = rhs.v <= v ? v - rhs.v : v + (P - rhs.v); return *this; } M inv() const { assert(v); #ifdef __linux__ // ACとCFで動作を変えるための仮の対処 return pow(P - 2); #else int a = v, b = P, x = 1, u = 0; while (b) { int q = a / b; swap(a -= q * b, b); swap(x -= q * u, u); } return x; #endif } template M pow(Int n) const { n = n >= 0 ? n % (P - 1) : P - 1 - -n % (P - 1); M res = 1; for (M a = *this; n > 0; a *= a, n >>= 1) if (n & 1) res *= a; return res; } template friend M operator*(Int lhs, M rhs) { return M(lhs) *= rhs; } template friend M operator/(Int lhs, M rhs) { return M(lhs) /= rhs; } template friend M operator+(Int lhs, M rhs) { return M(lhs) += rhs; } template friend M operator-(Int lhs, M rhs) { return M(lhs) -= rhs; } friend ostream& operator<<(ostream& os, M rhs) { return os << rhs.v; } friend istream& operator>>(istream& is, M& rhs) { lint x; is >> x; rhs = x; return is; } template friend bool operator==(Int lhs, M rhs) { return M(lhs) == rhs; } template friend bool operator!=(Int lhs, M rhs) { return !(lhs == rhs); } }; using Mint = ModInt<1000000009>; VV calc(const string& s) { int n = s.size(); VV< V > dp; assign(dp, n + 1, 2, 9 * n + 1, 0); dp[0][1][0] = 1; for (int i = 0; i < n; ++i) { for (int x = 0; x <= 9 * i; ++x) { for (int d = 0; d < 10; ++d) { dp[i + 1][0][x + d] += dp[i][0][x]; if (d > s[i] - '0') continue; dp[i + 1][s[i] - '0' == d][x + d] += dp[i][1][x]; } } } return dp.back(); } int main() { cin.tie(nullptr); ios_base::sync_with_stdio(false); string s, t; cin >> s >> t; auto a = calc(s); auto b = calc(t); Mint res = 0; for (int i = 1; i < min(a[0].size(), b[0].size()); ++i) { res += (a[0][i] + a[1][i]) * (b[0][i] + b[1][i]); } cout << res << '\n'; }