using System;
public class Program
{
public static void Main()
bool b = new bool (true);
float f = new float (12.567);
Console.WriteLine("{0},{1}",b,f);
}