1# For list of integers
2lst1 = []
3
4# For list of strings/chars
5lst2 = []
6
7lst1 = [int(item) for item in input("Enter the list items : ").split()]
8
9lst2 = [item for item in input("Enter the list items : ").split()]
10
11print(lst1)
12print(lst2)
13