#include <bits/stdc++.h>
using namespace std;
map<char,int> mp;
int main()
{
string str;
cin>>str;
for(int i=0;i<str.size();i++)
{
mp[str[i]]++;
}
int maxl=0;
for(auto m:mp){
maxl=max(maxl,m.second);
}
for(auto m:mp){
if(m.second==maxl) cout<<m.first;
}
return 0;
}
1 回复
0 转发
0 喜欢
2 阅读



