first_list = [1, 3, 5, 7, 9]
another_list = map(lambda x: x*x, first_list)
print(list(another_list))