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