#include #include int count_routes(int** board, int N, int from_x, int from_y, int to_x, int to_y) { int routes = 0; if(from_x==to_x && from_y == to_y) { routes++; } else { if(board[from_x+1][from_y] != 0 && from_x+1