#include #include template void swap(T a , T b) { T temp = a; a = b; b = temp; std::cout<<"Myswap"< void swap1(T1 a , T1 b) { T1 temp = a; a = b; b = temp; std::cout<<"Myswap1"<