What will be the output of the following program?
class sook1
{
    public static void main(String[] args)
    {
        int a = 38;
        int b = 26;
        int c = a++ + ++b;
        int d = --a + --b + c--;
        int e = a + ++b + ++c + d--;
        int f = --a + b-- + --c - d++;
        int sum = a + (b + c) / d * e + f;
        System.out.println("sum = " + sum);
    }
}


Posted on by