Membaca Daftar di Python

strings = list(map(str,input().split()))
numbers = list(map(int, input().split()))
Cautious Cormorant