using System;
public class Program
{
public static void Main()
float f =3.14f;
byte[] b =BitConverter.GetBytes(f);
foreach(byte bs in b) Console.Write(bs+":");
}