216.

What will be printed as the result of the operation below:

static void Main(string[] args)

    int x=20,y=35; 
    x=y++ + x++; 
    y= ++y + ++x; 
    Console.WriteLine("{0}{1}",x,y);

No description found.