What will be the output of the following program?
class OutPut
{
public static void main(String[] args)
{
int out = -15;
for (int i = 0; i < 5; i++)
{
for (int j = 8; j > 4; j -= 2)
{
if (i <= j)
{
out += i + j;
}
else
{
out -= j - i;
}
}
}
System.out.println("out = " + out);
}
}