function getS(s)
{
  var ds='';
  for (var i=0; i<s.length; i++) ds += String.fromCharCode(s.charCodeAt(i)-1);
  return ds;
}
