#include #define rep(i,n) for(int i=0;i<(int)(n);i++) using namespace std; using ll = long long ; using P = pair ; using pll = pair; constexpr int INF = 1e9; constexpr long long LINF = 1e17; constexpr int MOD = 1000000007; constexpr double PI = 3.14159265358979323846; int main(){ string t; cin >> t; int d; cin >> d; int n = t.size(); bool zero = true; if(d==0){ rep(i,n){ if('1' <= t[i] && t[i] <= '9') zero = false; } if(zero) cout << 1 << endl; else cout << 0 << endl; return 0; } rep(i,n){ if('1' <= t[i] && t[i] <= '9') zero = false; } vector> dp(n+1,vector(9,0)); dp[0][0] = 1; for(int i=0;i