using System;
public class Program
{
public static void Main()
//class, object
//create example of string, int, and double
//and call it in the main class
//output it in this format
//Welcome "name" and you are now "age" years old i will get your "money" remaining money
sideClass c1 = new sideClass();
Console.WriteLine("Welcome "+ c1.name +" and you are now "+ c1.age +" years old i will get your "+ c1.money +" remaning money");
}
public class sideClass
public string name = "Mercury";
public int age = 18;
public double money = 10.11;