var
x,y,n,i,a:integer;
countX, countY:integer;
begin
write('N: ');
readln(n);
write('X, Y: ');
readln(x,y);
countX:=0; countY:=0;
for i:=1 to N do
readln(a);
if a=x then inc(countX);
if a=y then inc(countY);
end;
if countX > countY then
writeln('Verno')
else
writeln('Error');
end.
var
x,y,n,i,a:integer;
countX, countY:integer;
begin
write('N: ');
readln(n);
write('X, Y: ');
readln(x,y);
countX:=0; countY:=0;
for i:=1 to N do
begin
readln(a);
if a=x then inc(countX);
if a=y then inc(countY);
end;
if countX > countY then
writeln('Verno')
else
writeln('Error');
end.