numbers = [1, 2, 3, 4, 5]
modified_numbers = [x**2 if x % 2 == 0 else x*2 for x in numbers]
print(modified_numbers) # Output: [2, 4, 6, 16, 10]