//SOLUTION
public class ReliefMap
{
    private int[][] map;

    public ReliefMap(int[][] array)
    {
        map = array;
    }

    public int highest()
    {
        int highest = map[0][0];
        for (int row = 0; row < map.length; row++)
        {
            for (int column = 0; column < map[0].length; column++)
            {
                if (map[row][column] > highest)
                {
                    highest = map[row][column];
                }

            }
        }
        return highest;
    }

    public int aboveSeaLevelCountInRow(int row)
    {
        int aboveSeaLevel = 0;
        for (int column = 0; column < map[0].length; column++)
        {
            if (map[row][column] > 0)
            {
                aboveSeaLevel++;
            }
        }
        return aboveSeaLevel;
    }

    
}
