#!/bin/python3 import sys #def sumOfGroup(k): # Return the sum of the elements of the k'th group. if __name__ == "__main__": k = int(input().strip()) answer = k*k*k print(answer)