#include using namespace std; void swap2(int& a, int& b) { int aux = a; a = b; b = aux; } int main() { return 0; }