#include <iostream>
using namespace std;
int main()
{
char ch[3][5] = {"AAAA", "BBB", "CC"};//C������������������������������������������ch[3]���������������3������������ch[3][5]������ch[3]������������������������������������������5������������������
cout << ch[1] << endl; //ch[3]������������������������������������������0���������
for(int i=0;i<3;i++){
for(int j=0;j<5;j++){
cout << ch[i][j] << " ";
}
cout << endl;
}
return 0;
}
/*
result���
BBB
A A A A
B B B
C C
*/