0 / 60 seg.

¿Cuál es la salida de este código?

class Program {
    static void Main() {
        int a = 5, b = 10;
        Swap(ref a, ref b);
        Console.WriteLine($"a = {a}, b = {b}");
    }
    static void Swap(ref int x, ref int y) {
        int temp = x;
        x = y;
        y = temp;
    }
}