What will be printed out as a result of the following code?

int x = 5, y = 7;
System.out.println(++x);
x += y++;
System.out.println(x + "," + y);

a. 6
6,8

b. 6
13,8

c. 5
13,8

d. 5
12,7