What will the values of x and y be after this code segment runs? int x = 100; int y = 100; if (x <= 100) { if (y > 100) { x = 200; } else { x = 99; } } else { x++; } y = x + y 1) x = 100, y = 200 2) x = 101, y = 100 3) x = 101, y = 201 4) x = 99, y = 199