I've a list
a = [1,2,3,4,5,6,7,8,9]
b = [10,11,12,13,14,15,16,17,18]
While traversing list b , if any number is less than 15, then remove its corresponding number (index) from list a. 
For eg:- in list b 10,11,12,13,14 are less than 15, hence its counterpart from list a should be removed, ie 1,2,3,4,5.
Currently, this is how I'm doing:
for index, i in enumerate(b):
    if i < 15:
        del(a[index])
This returns me an out of range index error.
How can I do this?
 
     
     
    