# your code goes here

import re

text = "Allowed Keywords: Submission of procurement  Negation Keywords: pdf"

allowed_keywords = re.search(r"Allowed Keywords:\s*(.*?)\s*Negation Keywords:", text).group(1)
negation_keywords = re.search(r"Negation Keywords:\s*(.*)", text).group(1)

print("Allowed Keywords:", allowed_keywords)
print("Negation Keywords:", negation_keywords)