int main() 
{ 
  int x, y, sum, mul, avg;
  cout << "A program which adds two integers\n";
  cout << "Enter 1st integer: ";
  cin >> x;
  cout << "Enter 2nd integer: ";
  cin >> y;
  sum = x + y;
  cout << "Sum is " << sum << endl;
  getch();
    return 0; 
}
already developed the 32 bit dll using vs2008. and i need to compile the the same solution by same vs 2008. but now i need two dlls ..one run under 32 bit os.. another under 64 bit os.