1def foo(x: int, y: list) -> dict:
2    return {x: y}
3
4print(foo(1, [2, 3]))
5