import re TEXT = """
Let $A$ be an affine plane over a radically integral local field $F$ with residual characteristic $p$.
We consider an open oriented line section $U$ of $A$ with normalized Haar measure $m$.
Define $f(m, p)$ as the maximal possible discriminant of the jacobian associated to the orthogonal kernel embedding of $U$ into $A$.
Find $f(20230401, 57)$. Give as your answer the concatenation of the first letters of each bolded word.
""" def euler_836(): r = '' for m in re.findall(r'(.*?)', TEXT): words = m.split(' ') for word in words: r += word[0] return r if __name__ == "__main__": solution = euler_836() print("e836.py: " + str(solution)) assert(solution == 'aprilfoolsjoke')