What will be the output of the following program?
public class Numeric
{
public static void main(String args[])
{
mystery(-99);
}
public static void mystery(int n)
{
if(n > 10)
{
n = n / 2;
}
else
{
n = n + 7;
}
if (n * 2 < 25)
{
n = n + 10;
}
System.out.println(n);
}
}