const line = readline(); const moveActionList = { A: (x, y, number) => { x -= number; return [x, y]; }...