comment saisir plusieurs entiers en python
x,y=map(int,input().split())#you can change the int to specify or intialize any other data structures
print(x)
print(y)
Bloody Butterfly