Program advcond;
uses crt;

var
w,h,s,o:real;

begin
clrscr;
write('Zadaj prvu stranu: ');
readln(w);
write('Zadaj druhu stranu: ');
readln(h);
if w = h then
writeln('Stvorec')
else
writeln('Obdlznik');
s:= w * h;
o:= 2 * (w + h);
writeln('Jeho obvod je ',o:5:2,' a jeho obsah je ',s:5:2);
readln;
end.