Write a function remove_even that takes two lists of integers as parameters and removes all even integers present in these lists. It should
return the final list composed of the remaining numbers. The returned list should be sorted from the smallest to the biggest number. (Hint:
use the list comprehension technique.)
Example usages:
>> remove_even ([2,3,4], [3,3,8,9,22]).
output:
[3, 3, 3, 9]
>> remove_even ([-2,3,-4, -2, 2], [3,3,-8,9,21])
output:
[3, 3, 3, 9, 21]