#include #include using namespace std; template T maxx(T a, T b) { return a > b ? a : b; } int main() { cout << maxx("bdc", "bcd"); }