Wie man platz getrennte Ganzzahleingabe in Python 3 nimmt

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