def my_fun(x, y):
    	return (x**2 - y**2)/2*x*y

x = [i for i in range(1,9)]
y = [i/5 for i in range(1, 9)]

print(list(map(my_fun, x, y)))