var quadrieren;

quadrieren = function(x) {
  if (x == null) {
    x = 2;
  }
  return x * x;
};