public static void Main() {
bool boolVariable = true;
short shortVariable = -91;
ushort ushortVariable = 91;
uint uintVariable = 1000;
long longVariable = -56000;
ulong ulongVariable = 56000;
float floatVariable = 160.54F;
double doubleVariable = 13782.57543D;
Console.WriteLine("The value of boolean variable: " + boolVariable);
Console.WriteLine("The value of byte variable: " + byteVariable);
Console.WriteLine("The value of short variable: " + shortVariable);
Console.WriteLine("The value of ushort variable: " + ushortVariable);
Console.WriteLine("The value of int variable: " + intVariable);
Console.WriteLine("The value of uint variable: " + uintVariable);
Console.WriteLine("The value of long variable: " + longVariable);
Console.WriteLine("The value of ulong variable: " + ulongVariable);
Console.WriteLine("The value of float variable: " + floatVariable);
Console.WriteLine("The value of double variable: " + doubleVariable);
Console.WriteLine("The value of char variable: " + charVariable);