#include <stdio.h>  
main() 
{     int nextnum, y = 2, n = 3;     
      nextnum = (y + ++n)*6;     
      printf("Result = %d\n", nextnum);     
}