Dominoes

아직 제출이 없습니다시간 제한3초메모리 제한1024 MB

문제

Dora likes to play with dominoes. She takes n×mn \times m table, marks some cells as occupied, and then tries to fill all unoccupied cells with 2×12 \times 1 dominoes.

Her little brother Dani loves to play pranks on his older sister. So when she is away, he marks two more unoccupied cells as occupied. He wants to do it in such a way that it will be impossible to fill all unoccupied cells with dominoes.

Help Dani to count the number of ways he can select these two cells. Since Dani can only count to one million, if this number of ways is xx, output min(x,106)\min(x, 10^6).

입력

The first line contains integers nn and mm (1n,m10001\le n, m\le 1000). Next nn lines contain mm characters each --- the initial state of the table. Character "\#" corresponds to an occupied cell, and character "." corresponds to an unoccupied cell. It is guaranteed that there are at least two unoccupied cells, and that it is possible to fill all unoccupied cells with dominoes.

출력

Let xx be the number of ways Dani can mark two cells in such a way that it will be impossible to fill all unoccupied cells with dominoes.

Print one integer min(x,106)\min(x, 10^6).