Write a Python function to find the N-th number which is both square and cube
Topic: Write a Python function to find the N-th number which is both square and cube
Solution
def nth_sq_and_cube(N): R = N**6 return R
List all Python Programs
Solution
def nth_sq_and_cube(N): R = N**6 return R