#include #include #include "print.h" //for the template function print #include "date.h" //for the class date using namespace std; int main() { print(10, 20); date today; print(3.14, today); print('A', "hello"); return EXIT_SUCCESS; }