my test case 1 and 2 are not running
#include
#include<string.h>
using namespace std;
int main()
{
int k,c1=0,c2=0;
cin>>k;
cin.ignore();
string s;
getline(cin,s);
char ch='a';
for(int i=0; i<k; i++)
{
for(int j=0; j<s.length(); j++)
{
if(s[j]!=ch)
{
s[j]=ch;
break;
}
}
}
for(int i=0 ; i< s.length(); i++ )
{
if(s[i]==ch)
{
c1++;
}
else
c2++;
}
if(c1>c2)
{
cout<<c1;
}
else
cout<<c2;
return 0;
}