listone = [2, 3, 4]
listtwo = [2*i for i in listone if i > 2]
print(listtwo)
