#include using namespace std; //TO DO //Write a template function called Add // that takes 2 arguments of the same type // and returns a result using the "+" operator int main () { int i1=5, j1=6 ; string str1 = "Charles " ; string str2 = "Babbage" ; cout << Add(i1, j1) << endl; cout << Add(str1, str2) << endl; return 0; }