Write a function void swapValues(int& a, int& b) that swaps two integers in place using references without returning any value.
void swapValues(int& a, int& b)
Before swap: x=10, y=20 After swap: x=20, y=10 [✓] Reference mutation verified (Time: 0.008s, Memory: 2.2 MB)