A city is built on the top of a rectangular n × m grid where all the grid cells are equal squares. Each of the n·m grid cells can serve as a foundation of a single building in the city. A building is represented as a number of 1 × 1 × 1 cubes stacked on the top of each other. The cube that lays in the foundation of a building entirely occupies a single cell on the grid. It is clear that adjacent buildings can share a wall or a part of it. Typical cities can be seen on the image below.
The King of Berland has a 3D model of the capital city in his office. This model was made on a special 3D-printer out of plastic. It represents a layout of the capital city, but the scale is smaller, so it's very convenient for the King to examine the model without having to visit the city itself. The King is bored though because the model is colorless, so he wants to paint the model. To calculate the exact amount of required paint he should know the total area of the model's surface.
You have to help the King and write a program that will calculate the required surface area of the given model. While calculating the surface area you should count not only the side surfaces, but also the areas of the top and bottom facets.
The model is given to you as n × m matrix of digits. A digit in the j-th position of the i-th row stands for the height of the building with its foundation in cell (i, j) of the model. If the corresponding digit is equal to "_0_", it means there is no building built on the top of this cell.
The first line of input contains a pair of integers n, m (1 ≤ n, m ≤ 100), where n — amount of rows in the given grid, m — amount of columns. The following n lines contain the description of the model. These n lines contain m digits each representing heights of the buildings. It's guaranteed that the given matrix contains at least one non-zero digit.
Output the only positive integer — surface area of the model.
The first sample test corresponds to the leftmost picture from the problem statement.
## Input
The first line of input contains a pair of integers n, m (1 ≤ n, m ≤ 100), where n — amount of rows in the given grid, m — amount of columns. The following n lines contain the description of the model. These n lines contain m digits each representing heights of the buildings. It's guaranteed that the given matrix contains at least one non-zero digit.
## Output
Output the only positive integer — surface area of the model.
[samples]
## Note
The first sample test corresponds to the leftmost picture from the problem statement.
**Definitions**
Let $ n, m \in \mathbb{Z}^+ $ denote the dimensions of the grid, with $ 1 \leq n, m \leq 100 $.
Let $ H = (h_{i,j})_{i=1,\dots,n; j=1,\dots,m} $ be an $ n \times m $ matrix of non-negative integers, where $ h_{i,j} $ represents the height of the building at cell $ (i,j) $.
**Constraints**
1. $ 1 \leq n, m \leq 100 $
2. $ h_{i,j} \in \mathbb{Z}_{\geq 0} $ for all $ i,j $
3. $ \exists\ (i,j) $ such that $ h_{i,j} > 0 $
**Objective**
Compute the total surface area $ S $ of the 3D model, defined as the sum of:
- The top and bottom faces of all cubes: $ 2 \cdot \sum_{i=1}^n \sum_{j=1}^m [h_{i,j} > 0] $
- The lateral (side) faces exposed to air or adjacent lower buildings:
For each cell $ (i,j) $, the exposed side area is the sum over its 4 orthogonal neighbors $ (i',j') \in \{(i-1,j), (i+1,j), (i,j-1), (i,j+1)\} $ of:
$$
\max(0, h_{i,j} - h_{i',j'})
$$
plus the exposed sides on the grid boundaries (i.e., if a neighbor is out of bounds, contribute $ h_{i,j} $).
Thus, total surface area:
$$
S = 2 \cdot \sum_{i=1}^n \sum_{j=1}^m \mathbf{1}_{h_{i,j} > 0} + \sum_{i=1}^n \sum_{j=1}^m \sum_{(i',j') \in \mathcal{N}(i,j)} \max(0, h_{i,j} - h_{i',j'})
$$
where $ \mathcal{N}(i,j) $ is the set of 4 orthogonal neighbors within bounds, and $ h_{i',j'} = 0 $ if $ (i',j') $ is out of bounds.