Template function in c++

#include<iostream>
#include<conio.h>
#define interSz 5;
#define doubleSz 4;
#define CharSz 6
using namespace std;
template<typename T>

void Info(const T Information)
{
     cout << Information;
                
}
int main()
{
char name[20];

int id;
cout << "Enter Student name......: ";
cin >> name;
Info(name);
cout << endl<< endl;
cout << "Enter Student Id...  :";
cin >> id;
cout << endl<< endl;s
Info(id);
getch();
return 0;
}