#include <iostream> using namespace std; int main() { int x=0; while(x<=5) { cout<<"B"; x+=2; } return 0; }