using System;
using System.Collections.Generic;
using System.Text;namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            int a = 1;
            int c = 2;
            bool b = true;
            int i = (int)b;
            if (a is int)
            {
                Console.WriteLine("a is int");
                if (a > 1)
                    Console.WriteLine(" a is bigger than 1.");
                else
                    Console.WriteLine("a is not bigger than 1.");
            }
            if (b)
                Console.WriteLine("b is true");
            if (a < c)
                Console.WriteLine("b is true");
        }
    }
}