**javaScript V8 ** const a = readline(); const arrs = a.split(";"); const reg = /^(A|S|W|D)\d{1,2}$/g; let x = 0; let y = 0; arrs.forEach((e) => { if (reg.test(e)) { let go = e.slice(1); let fangx = e.slice(0, 1); switch (fangx) { case "A": x -= parseInt(go); b...