# Python code to convert list of
# string into sorted list of integer
# List initialization
list_string = [1, 12, 15, 21, 131]
list_int = []
# using iteration and sorted()
for i in list_string:
list_int.append(i)
# printing output
print(list_int)