217) The output of the following program
main( )
{
int a = 1, b = 2, c = 3;
printf("%d", a += (a += 3, 5, a));
}
will be
Answer is: