function xixi(var s:string):string;
begin
  if length(s)=1 then
  s:='0'+s;
  result:=s;
end;