0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 02:05:25 +00:00
OI-codes/Luogu/P6832/P6832.cpp

17 lines
223 B
C++

// R38953830
#include <bits/stdc++.h>
using namespace std;
int main() {
char c;
int a[30] = {0};
while (cin >> c) {
a[c - 'a']++;
}
sort(a, a + 26);
cout << a[25] << endl;
return 0;
}