Find the integral roots of a given Cubic equation
Given 5 integers say A, B, C, D, and E which represents the cubic equation f(x) = A*x^{3} + B*x^{2} + C*x + D = E, the task is to find the integral solution for this equation. If there doesn't exist any integral solution then print "NA".Examples: Input: A = 1, B = 0, C = 0, D = 0, E = 27 Output: 3In