Python: what is the output of the following? (3.10+)def f(seq): match seq: case [a]: return a case [a, b]: return b case _: return -1 print(f([1, 2]))