using System;
public class Program
{
public static void Main()
byte n = 0121;
if ((n&16) == 16)
Console.WriteLine("Das vierte Bit ist 1");
}