#include <iostream>
#include <fstream>
#include <cassert>

int testreturn(int a, int b){
   return(a==b) ? 1 : 0;       //a and b are local variables, confined here
}

int main(){

   //Initialize _ofs as an object of class ofstream
   std::ofstream _ofs;

   int a,b,result;  //Two integers
   a=2;
   b=2;

   //Test the Assert Function

   assert(a==b);   
}
