#include<iostream.h>
#include<conio.h>
class sq 
{
      private:
              int a;
      public:
             sq()
             {
               a=5;
               }
             sq(int x)
      {
             a=x;
      }
       ~sq()
       {
       }
       void show_data()
       {
            cout<<"******** Square********"<<endl;
            cout<<"Square of " << a <<" = "<<a*a;
       }
       };
       int main(void)
       {
           sq obj,obj1(10);
           obj.show_data();
           cout<<endl;
           obj1.show_data();
           getch();
       
       }     
