•The vector a holds the squares of integers 0 to n; for instance, if n is equal to 3, a contains 0, 1, or 4. The vector b holds the cubes of integers 0 to n, so if n is equal is 3, then the vector b is equal to 0, 1, or 8. How would you solve using python and then how would you solve using NumPy