/******************************************************************************
Online Java Compiler.
Code, Compile, Run and Debug java program online.
Write your code in this editor and press "Run" button to execute it.
*******************************************************************************/
public class Main
{
public static int fac2(int n)
{
if (n>=1)
{
int result = 1;
for (int i=1; i<=n; i=i+2)
{
result = result * i;
}
if(result<0)return -1;
return result;
}
return -1;
}
public static void main(String[] args) {
int n = Integer.parseInt(args[0]);
System.out.println("fac(" + n + ") = " + fac2(n));
}
}