/******************************
 Multiplication of large numbers
 to compile:
       g++  sourcename -o executablename -lg++
             
***********************/
#include<Integer.h>
#include<iostream.h>

void main()
{ Integer s,t,u;
  cout<<"\nenter your number: "; cin>>s;
  cout<<"\nenter another: "; cin>>t;
  u = s*t;
  cout<<"\nu is "<<u;
}

