| 39 | } |
| 40 | |
| 41 | int main(int argc, char const *argv[]) |
| 42 | { |
| 43 | cin >> n >> k; |
| 44 | cin >> s; |
| 45 | |
| 46 | int a = BeautyString('a'); |
| 47 | int b = BeautyString('b'); |
| 48 | |
| 49 | // Finally, we compare which one did the greater substring |
| 50 | cout << max(a,b) << '\n'; |
| 51 | |
| 52 | return 0; |
| 53 | } |
nothing calls this directly
no test coverage detected