static void Main(string[] args)
Object b = "HEllo World!";
String str = b as string;
Console.WriteLine($"Type of a: {type}");
Console.WriteLine($"a is int: {isInt}");
Console.WriteLine($"String: {str}");
Console.WriteLine($"Name of Variable: {nameof(b)}");
int defaultValue = default(int);
Console.WriteLine($"Default value of int: {defaultValue}");