#include #include using std::cout; using std::endl; using std::string; // Put add() function template here int main(){ int answer = 42; float pi = 3.14159; string str1("Yeah, my templated function "); string str2("works!"); // Put a cout statement here that has a call to add(), where add() is passed "answer" and "pi" // Put a cout statement here that has a call to add(), where add() is passed "str1" and "st2" return 0; }