Merge two sorted lists into one sorted list.
Implement this function:
def merge_sorted(l1: list, l2: list) -> list:
Write the function only — the arguments are read for you and the return value is printed automatically.
Arguments arrive as one Python literal per line, in this order: l1, l2.
Input
[1, 3, 5]
[2, 4, 6]
Output
[1, 2, 3, 4, 5, 6]