function num = negate(n)
   num = -n;
end

function num = timesTwo(n)
  num = n*2;
end

What is the value of x after these lines of code are executed?

num = 25;
x = negate(timesTwo(negate(timesTwo(num))));