using System;
public class Program
{
public static void Main()
// Below code will NOT work here. C# 7.1 is not supported. Copy code from line 10 to 19
// and run it in this editor https://try.dot.net/ . Explained in the video.
string name = default;
int age = default;
int weight = default;
bool isMarried = default;
// Print Values
Console.WriteLine(name); // null
Console.WriteLine(age); // 0
Console.WriteLine(weight); // 0
Console.WriteLine(isMarried); // False
}