Challenge 014
Fix the code in the code tab to pass this challenge (only syntax errors). Look at the examples below to get an idea of what the function should do.
Examples
cubes(3) ➞ 27
cubes(5) ➞ 125
cubes(10) ➞ 1000
Solution
def cubes(a):
return a ** 3