import re

input_text = "((VERB)ayudar a nosotros) ár((VERB)ayudar a nosotros) Los computadores pueden ((VERB)ayudar a nosotros)"
input_text = re.sub(r"(?<=\S)\(\(VERB\)", r" \g<0>", input_text)
print(input_text)

