시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 (추가 시간 없음) 512 MB41191754.839%

문제

Little Lev is learning how to draw letters Q and F. Initially, he has a white grid of size $n \times m$. Then he will draw several letters of one of the following two shapes:

Lev will not rotate or mirror these two shapes. Every time he draws a new letter, he will choose a position for the letter inside the grid and paint all cells of the shape black. Lev will only draw letters in such a way that before drawing all black cells of the letter are white --- that is, he will never paint a cell twice.

You are given the final coloring of the grid. Count the number of letters Q and letters F drawn by Lev.

입력

The first line contains two integers $n$ and $m$ --- the height and the width of the grid ($5 \le n \le 300$; $3 \le m \le 300$).

The next $n$ lines contain $m$ characters each, denoting the final state of the grid. A white cell is denoted by '.', a black cell is denoted by '\#'.

It is guaranteed that the grid is a valid result of Lev's drawing.

출력

Print two integers --- the number of letters Q and the number of letters F drawn by Lev, respectively.

예제 입력 1

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

예제 출력 1

1 0

예제 입력 2

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

예제 출력 2

0 1

예제 입력 3

5 8
###..###
#.#..#..
###..##.
..#..#..
..#..#..

예제 출력 3

1 1

예제 입력 4

8 8
.....###
###..#.#
#.######
###.####
#.###.##
#.#.###.
..#...#.
......#.

예제 출력 4

2 2

힌트

Illustration for the fourth example test: