0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 18:45:25 +00:00
OI-codes/problem/P6832/P6832.cpp
2020-09-27 20:52:11 +08:00

17 lines
224 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;
}