Comment prendre une entrée entière séparée dans l'espace dans Python 3

N, M = map(int, input().split())
print(N)
print(M)
Excited Earthworm