Business Card
Summary
You will write a simple electronic business card application.  It will ask the user for details and then print them to the screen.
Task
  - Create a new console application
- Write code to ask the user for their:
    
      - Name
- Telephone number (Hint: you can treat this as a string for now)
- Who they work for/study with
 
- Write further code that prints out (using Console.WriteLine) in the following order
    
      - Who they work for
- Their name
- Their telephone number
 
Questions
 
 - How would you modify this code to also show the user's date of birth and age?
- How would you modify this code to display your 'business card' every time it is run, without asking the user for input?