COCI 2006/2007, Contest #2

Task STOL

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

The first line contains two integers R and C (1 ≤ R, C ≤ 400), the dimensions of the apartment.

Each of the following R rows contains exactly C characters (without spaces), whether a square is free ('.') or blocked ('X').

Mirko can put his table only in free squares.

Output

Output the number of guests Mirko can invite to dinner after he buys his table on a single line.

Sample Tests

Input

2 2
..
..

Output

7

Input

4 4
X.XX
X..X
..X.
..XX

Output

9

Input

3 3
X.X
.X.
X.X

Output

3

All Submissions
Best Solutions


Point Value: 12 (partial)
Time Limit: 1.00s
Memory Limit: 32M
Added: Jul 12, 2013

Languages Allowed:
C++03, PAS, C, HASK, ASM, RUBY, PYTH2, JAVA, TEXT, PHP, SCM, CAML, PERL, C#, C++11, PYTH3

Comments (Search)

It's quiet in here...