eolymp
bolt
Try our new interface for solving problems
Problems

Photography

Photography

Each morning at 8:30 the schoolchildren of LKSH do their morning exercises in front of the main building. At the same time, boys and girls are standing on the ground, forming a rectangle.

The photographer stands on the porch of the building. He wants to make a group photo of some boys and girls. To do this, he needs to select a rectangular area on the ground so that the number of boys and girls inside will be equal. Unfortunately for pupils, there are many such areas. A photographer wants to take photos of all areas to choose the best. To make one photo takes one second. And all this time the boys and girls must continue their exercises!

Imagine that on the ground in front of the building a coordinate system is drawn. Then the students stand in the integer points, forming a rectangle of h × w points with sides parallel to the coordinate axes. The photographer needs to choose a sub-rectangle with sides parallel to the coordinate axes.

Write a program that calculates how many seconds the schoolchildren must do their morning exercises.

Input

First line contains two positive integers h and w (1w, h300) - the dimensions of a rectangle formed by pupils. Each of the next h lines contains w numbers. Number 0 means a boy in this position, number 1 means girl.

Output

Print the number of seconds while the morning exercises will continue.

Time limit 1 second
Memory limit 128 MiB
Input example #1
3 4
0 1 0 0
1 0 1 1
0 0 0 1
Output example #1
20
Input example #2
3 1
0
0
0
Output example #2
0
Author Олег Пестов
Source Тринадцатая международная командная олимпиада школьников ЛКШ среди параллелей A, A' и B