#ifndef PRINT_H #define PRINT_H #include using namespace std; template void print(const T1& a, const T2& b) { cout << a << " " << b << "\n"; } #endif