Since this seems to be a homework problem, I'll give a more general answer.
You are given the second derivative of a function, the value of the function at one point, and the value of the derivative of the function at another point, and asked to find the function.
To do so, you will integrate the second derivative of the function twice, and use the initial values to solve for the constants of integration. As an example:
Find f if f''(x) = 2x + 2, f'(0) = 1, f(1) = 2:
∫ 2x + 2 = x2 + 2x + C = f'(x)
To find the value of C, we know that f'(0) = 1 = C (plugging in x = 0 in the expression we found)
Now we integrate f'(x) = x2 + 2x + 1:
∫ x2 + 2x + 1 = (1/3)x3 + x2 + x + C.
We then find C using our initial value, f(1) = 2: this gives us C = - 1/3. So our final answer is f(x) = (1/3)x3 + x2 + x -1/3.