0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 05:25:28 +00:00
OI-codes/Luogu/CF1146A/CF1146A.cpp

17 lines
243 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
char c;
int n = 0, a = 0;
while (cin >> c) {
n++;
if (c == 'a') {
a++;
}
}
cout << min(a * 2 - 1, n) << endl;
return 0;
}