import math

def calculem(x):

    return math.pow(x, 3)/(1+math.exp(x)) + (x/6)
