cara mengambil input untuk daftar dalam satu baris dalam python
# Reads two numbers from input and typecasts them to int using
# map function
x, y = map(int, input().split())
Clear Camel