#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
int mp[][6],m,n,ans;
void work(int i){//以第i行为底的矩阵
int stk[6],w[]={},h[]={},top=;//高度栈,左宽栈
memset(stk,-,sizeof stk);
for(int j=;j<=m;j++)h[j]=mp[i][j];
for(int j=;j<=m;j++){
if(h[j]>stk[top])
stk[++top]=h[j],w[top]=;
else {
int cnt=;
while(top>= && stk[top]>=h[j]){
ans=max(ans,stk[top]*(w[top]+cnt));
cnt+=w[top--];
}
stk[++top]=h[j];
w[top]=cnt+;
}
}
}
int main(){
while(scanf("%d%d",&n,&m)==){
memset(mp,,sizeof mp);
for(int i=;i<=n;i++)
for(int j=;j<=m;j++)
scanf("%d",&mp[i][j]); m++;//在最右边添一个全0列
for(int j=;j<=m;j++)
for(int i=;i<=n;i++)
if(mp[i][j]==)mp[i][j]=mp[i-][j]+; ans=;
for(int i=;i<=n;i++)
work(i);
printf("%d\n",ans);
}
}