Program da;
var i,p:integer;
begin


for i:=1 to 300 do
if (i mod 2=1) then
p:=p*i;
writeln ('P=', p);
readln;
end.