I try to do list comprehension with reading from CL arguments
weights = [[int(arg) for arg in sys.argv[i]] for i in range(3,7)]
This is what