program treygol; var a,b,c:real; begin readln(a,b,c); if (a=b) and (b=c) then writeln('Yes') else writeln('No); readln end.