#include #include #include void solve() { int n, d; std::cin >> n >> d; std::string ans(n, 'A'); d -= n; for (char& c : ans) { if (d < 0) { c = 'C'; ++d; } if (d > 0) { c = 'B'; --d; } } std::reverse(ans.begin(), ans.end()); std::cout << ans << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }