public static void Main()
var myName = "Rachana Mota";
var myFathername = "Vipin Mota";
var myMothername = "Deepa Mota";
var myBrothername = "Aditya Mota";
var mySisterinlaw = "Snehal Mota";
var myNiece = "Diyara Mota";
var myFiance = "Shreyansh Daga";
var myFatherinlaw = "Dnyanesh Daga";
var myMotherinlaw = "Shweta Daga";
var myBrotherinlaw = " Shrenik Daga";
var _mySisterinlaw = "Tanushree Roy";
Console.WriteLine("Hello I am " + myName);
Console.WriteLine("My Age is " +myAge);
Console.WriteLine("My Father Name is " + myFathername);
Console.WriteLine("My Mother Name is " + myMothername);
Console.WriteLine("My Brother Name is " + myBrothername);
Console.WriteLine("My Sister-in-law is " + mySisterinlaw);
Console.WriteLine("My Niece is " + myNiece);
Console.WriteLine("My Fiance Name is " + myFiance);
Console.WriteLine("His Age is " + hisAge);
Console.WriteLine("My Father-in-Law Name is " + myFatherinlaw);
Console.WriteLine("My Mother-in-Law Name is " + myMotherinlaw);
Console.WriteLine("My Brother-in-law Name is" + myBrotherinlaw);
Console.WriteLine("My Sister-in-law Name is " + _mySisterinlaw);