Mirko has bought an apartment and wants to invite to dinner as many people as possible to celebrate with him. For this he needs a large rectangular wooden table for which he will sit down with his guests. The number of people a table can accommodate is equal to its perimeter (the sum of the lengths of all four sides). Mirko wants to buy a table such that it fits in his apartment and that as many people as possible can sit down with him for dinner. The table must be placed so that its edges are parallel to the edges of the apartment.
Given the layout of the apartment, find the number of people Mirko can invite to dinner.
Input Specification
The first line contains two integers and , the dimensions of the apartment.
Each of the following rows contains exactly characters (without spaces), whether a square is free (.
) or blocked (X
).
Mirko can put his table only in free squares.
Output Specification
Output the number of guests Mirko can invite to dinner after he buys his table on a single line.
Sample Input 1
2 2
..
..
Sample Output 1
7
Sample Input 2
4 4
X.XX
X..X
..X.
..XX
Sample Output 2
9
Sample Input 3
3 3
X.X
.X.
X.X
Sample Output 3
3
Comments
Since the original data were weak, an additional test case was added, and all submissions were rejudged.