/*----------------------------------------------------------------------*/
/*                           Rel.cpp                                    */
/* Authored By : H.P.Kasmaei                                            */
/* Last Update : february 22, 2009                                      */
/* http://www.hpkclasses.ir/                                            */
/*----------------------------------------------------------------------*/

#include <iostream.h>

int main() 
{
   int a=10;
   int b=( a = 10) ;
   int c=( a==10) ;
   cout << "Value of b is " << b << endl ;
   cout << "Value of c is " << c << endl ;
   return 0; 

}


