#include #include int main() { int m=2, n=3; std::swap(m, n); std::cout << m << " " << n << '\n'; return 0; }