get_cube = lambda n:n*n*n # take integer input n = int(input()) # call the function and print the result print(get_cube(n))