using System;
public class Program
{
public static void Main()
var age = 23;
var name = "Lorem Ipsum";
var money = 123.45;
Console.WriteLine($"Type of age: {age.GetType()}");
Console.WriteLine($"Type of name: {name.GetType()}");
Console.WriteLine($"Type of money: {money.GetType()}");
}