#include using namespace std; const int mod=998244353; constexpr int INPUT_MAX=200005; int rt[INPUT_MAX]; int getroot(int n){ if(rt[n]==-1)return n; return rt[n]=getroot(rt[n]); } void unite(int a,int b){ a=getroot(a),b=getroot(b); if(a!=b){ rt[a]=b; } } long long modpow(long long a,int n){ long long ret=1,t=a; for(int i=0;i<30;i++){ if(n>>i&1)ret=ret*t%mod; t=t*t%mod; } return ret; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); fill(rt,rt+INPUT_MAX,-1); int W,H; cin>>W>>H; long long ans=modpow(10,W),inv10=modpow(10,mod-2); vectorSA(W,-1); for(int i=0;i>S; arrayl; for(int j=0;j<26;j++){ l[j]=-1; } for(int j=0;j='0'&&S[j]<='9'){ int rj=getroot(j); if(SA[rj]!=-1&&SA[rj]!=S[j]-'0'){ ans=0; } if(SA[rj]==-1){ ans=ans*inv10%mod; } SA[rj]=S[j]-'0'; }else if(S[j]!='?'){ if(l[S[j]-'a']!=-1){ int rl=getroot(l[S[j]-'a']),rj=getroot(j); if(rl!=rj){ if(SA[rl]!=-1&&SA[rj]!=-1&&SA[rl]!=SA[rj]){ ans=0; }else if(SA[rl]==-1){ SA[rl]=SA[rj]; }else{ SA[rj]=SA[rl]; } ans=ans*inv10%mod; } unite(rl,rj); } l[S[j]-'a']=j; } } cout<