#include <iostream>
using namespace std;

int main() {
    char (*b)[50];
    b = new char[50][50];
    return 0;
}