#include <iostream> using namespace std; // write your code here...... template <typename T> void swap(T *a, T *b){ T temp; temp = * a; *a = * b; *b = temp; } int main() { int m, n; cin >> m; cin >> n; // write your code here...... swap(&n,&m); cout << m <<...