誰もいないよう とか 誰か優しいかた とか余分。逆に応えたくもなるぞ
自分の為の予防線張るんじゃない

極めて単純(数字がワードと認識できる文にしか有効じゃない)、AppleScriptアクションでなら、
on run {input, parameters}
set theSum to 0
repeat with theNumber in (words of input)
try
set theSum to (theSum + theNumber)
end try
end repeat
set the clipboard to theSum
return theSum
end run
な感じかな