#include <vector>

using namespace std;

vector<vector<char>> solve(long long K) {
    // your code here!
    return {};
}
