#include <iostream.h>
#include <windows.h>
#include <winuser.h>

int main()
{
  long x;
  long y;
  BOOL rc;

  cout << "Maus Position setzten..." << endl;
  cout << "X:";
  cin >> x;
  cout << "Y:";
  cin >> y;

  rc = SetCursorPos(x,y);


}
