Name and age display in c#

  1. using System;  
  2.   
  3. class Program  
  4.   
  5. {  
  6.     static void Main()  
  7.     {  
  8.         int a;  
  9.         string b, c, d;  
  10.         //Read a name  
  11.         Console.Write("Enter your name : " );  
  12.         b=Console.ReadLine();  
  13.         //Read Age  
  14.         Console.Write("Enter your age : " );  
  15.         a = Convert.ToInt16( Console.ReadLine());  
  16.         //Display formatted output  
  17.         Console.WriteLine("Your name is " + b + ", age is " + a);  
  18.         //Waiting fot output view  
  19.         Console.ReadKey();  
  20.     }  
  21. }