Compiled successful but not submitting

#include
using namespace std;
char m[][27]={"",β€œa”,β€œb”,β€œc”,β€œd”,β€œe”,β€œf”,β€œg”,β€œh”,β€œi”,β€œj”,
β€œk”,β€œl”,β€œm”,β€œn”,β€œo”,β€œp”,β€œq”,β€œr”,β€œs”,β€œt”,β€œu”,β€œv”,β€œw”,β€œx”
,β€œy”,β€œz”

};
void rcs(string si,string ans,int c){
int s=si.size();
//base condition
if(c==s){
cout<<ans<<endl;return;

}
if(si[c]!='0'){
	int n=si[c]-'0';
	string ch=m[n];
	rcs(si,ans+ch,c+1);

}
if(c<s-1){
	int n1=si[c]-'0';
	int n2=si[c+1]-'0';
	int n3=n1*10+n2;
	if(n3<=26){
		string ch1=m[n3];
		rcs(si,ans+ch1,c+2);
	}
}

}

int main() {
string si;cin>>si;
rcs(si,"",0);
return 0;
}

hi @yashtripathi6969_0cd127807d833066

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.

again it’s not submitting (you’r code)