Problem8275--ABC280 —— A - Pawn on a Grid

8275: ABC280 —— A - Pawn on a Grid

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

There is a grid with H rows from top to bottom and W columns from left to right. Each square has a piece placed on it or is empty.
The state of the grid is represented by H strings $S_1,S_2,…,S_H$, each of length W.
If the j-th character of $S_i$ is #, the square at the i-th row from the top and j-th column from the left has a piece on it;
if the j-th character of $S_i$ is ., the square at the i-th row from the top and j-th column from the left is empty.
How many squares in the grid have pieces on them?

Input

The input is given from Standard Input in the following format:
$H\ W$
$S_1$
$S_2$
$⋮$
$S_H$

Output

Print the number of squares with pieces as an integer.

Constraints

1≤H,W≤10
H and W are integers.
$S_i$ is a string of length W consisting of # and ..

Sample 1 Input

3 5
#....
.....
.##..

Sample 1 Output

3

The following three squares have pieces on them:

  • the square at the 1-st row from the top and 1-st column from the left;
  • the square at the 3-rd row from the top and 2-nd column from the left;
  • the square at the 3-rd row from the top and 3-rd column from the left.

Thus, 3 should be printed.

Sample 2 Input

1 10
..........

Sample 2 Output

0
Since no square has a piece on it, 0 should be printed.

Sample 3 Input

6 5
#.#.#
....#
..##.
####.
..#..
#####

Sample 3 Output

16

Source/Category