Răspuns :
#include<iostream>
#include<string>
using namespace std;
int main()
{
char s1[50],s2[50];
int p,n,m,ok;
cin.get(s1,50);
fflush(stdin);
cin.get(s2,50);
cin>>p;
n=strlen(s1);
m=strlen(s2);
ok=1;
while(p&&ok)
{
if(s1[n-p]!=s2[m-p])
ok=0;
p--;
}
if(ok==1)
cout<<"Sunt rime!";
else
cout<<"Nu sunt rime!";
return 0;
}
#include<string>
using namespace std;
int main()
{
char s1[50],s2[50];
int p,n,m,ok;
cin.get(s1,50);
fflush(stdin);
cin.get(s2,50);
cin>>p;
n=strlen(s1);
m=strlen(s2);
ok=1;
while(p&&ok)
{
if(s1[n-p]!=s2[m-p])
ok=0;
p--;
}
if(ok==1)
cout<<"Sunt rime!";
else
cout<<"Nu sunt rime!";
return 0;
}