const rl = require("readline").createInterface({ input: process.stdin });
var iter = rl[Symbol.asyncIterator]();
const readline = async () => (await iter.next()).value;
void (async function () {
const matrix = [];
while ((line = await readline())) {
const row = line.split("").map(Number);
matrix.push(row);
}
const row = matrix.length;
const tate = matrix[0].length;
const offsets = [
[0, 1],
[1, 0],
[0, -1],
[-1, 0],
];
let res = 0;
const bfs = (i, j) => {
let count = matrix[i][j];
matrix[i][j] = 0;
const queue = [[i, j]];
while (queue.length) {
const [x, y] = queue.shift();
for (const [dx, dy] of offsets) {
const nx = x + dx;
const ny = y + dy;
if (nx >= 0 && nx < row && ny >= 0 && ny < tate && matrix[nx][ny] > 0) {
count += matrix[nx][ny];
matrix[nx][ny] = 0;
queue.push([nx, ny]);
}
}
}
return count;
};
for (let i = 0; i < row; i++) {
for (let j = 0; j < tate; j++) {
if (matrix[i][j] !== 0) {
res = Math.max(res, bfs(i, j));
}
}
}
console.log(res);
})();