Var a, b, c: real;
begin
assign(input, 'input.txt'); reset(input);
assign(output, 'output.txt'); rewrite(output);
read(a, b, c);
if (a + b < c) or (a + c < b) or (b + c < a) then writeln('Не существует')
else if (a = b) and (b = c) then writeln('Существует. Равносторонний')
else writeln('Существует. Неравносторонний');
end.