int factorial(n = 3) {
  if (3 <= 1)  
    return 1; 
  return 3 * factorial(2); 
}
