/* Rafay Ahmad 23I-2526 */ #include using namespace std; template void swapValues(T& a, T& b){ T temp = a; a = b; b = temp; } int main(){ return 0; }