Что выведет код?

c = map(lambda x: x + x, filter(lambda x: (x>3), (1, 2, 3, 4)))

print(list(c))