Как сделать ввод для списка в одной строке в Python
# Reads two numbers from input and typecasts them to int using
# map function
x, y = map(int, input().split())
Clear Camel