public static void Main()
int binzero = 0 , binone = 1;
Console.WriteLine("Enter the binary number");
int n = int.Parse(Console.ReadLine());
Console.WriteLine("The given is not a Binary Number");
Console.WriteLine("Number of 0 = {0} , 1 = {1} and the total = {2}", binzero,binone, binzero + binone);