///Version 2

#include<iostream>
using namespace std;
void display();
int main()
{
    display();
    // I can ask the user to enter his name and have it display back again by reusing the display() function
    display();
    return 0;
}
void display()
{
     string name;
     cout<<"Enter the Nmae\n";
     cin>>name;
     cout<<"Name is\t"<<name<<endl;
}
