#include <algorithm>
#include <iostream>

int main( ) {
   int a = 2, b = 5;
   std::swap(a, b);
   std::cout << a << " " << b;
}
