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

17 lines
244 B
C++
Raw Normal View History

2020-10-23 12:29:53 +00:00
#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;
}