void main(){ import std.stdio, std.string, std.conv, std.algorithm; int n, m; rd(n, m); auto d=new int[][](m, n); foreach(i; 0..m) d[i]=readln.split.to!(int[]); auto a=new int[](n); int tg=777; bool ok=false; foreach(i; 0..m){ a[]+=d[i][]; auto sum=new int[](n+1); sum[1..$]=a.dup; foreach(j; 0..n) sum[j+1]+=sum[j]; for(size_t l=1; l<=n; l++)for(auto r=l; r<=n; r++){ if(sum[r]-sum[l-1]==tg) ok=true; } } writeln(ok?"YES":"NO"); } void rd(T...)(ref T x){ import std.stdio, std.string, std.conv; auto l=readln.split; assert(l.length==x.length); foreach(i, ref e; x){ e=l[i].to!(typeof(e)); } } void wr(T...)(T x){ import std.stdio; foreach(e; x) stderr.write(e, " "); stderr.writeln; }