// Simple program to declare variables and use if-else

#include <iostream.h>

int main()
{
   int a;

   cout << "Enter a number to be shown on the screen : \t";
   cin >> a;

   if (a > 100)
   {
      cout << "a is greater than 100, and its value is:";
      cout << a;
   }
   else
   {
      cout << "a is lesser than 100, and its value is:";
      cout << a << endl;
   }

}
