Function Python

def quadcube (x):
     return x**2, x**3
 
a, b = quadcube(3)
print a
print b