Как ввести несколько целых чисел в 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