Split String et convertir en int python
a, b = tuple(int(x) for x in '1 2'.split())
Stranger danger
a, b = tuple(int(x) for x in '1 2'.split())