#include <iostream>
#include <windows.h>
usingnamespace std;
int main (int argc, char argv){
FreeConsole(); //Makes the console go away. Nuff said
int X,Y;
int stuff;
for (stuff = 1; stuff < 1000; stuff++) //For stuff to be 1,It must be less 1k
{
X = rand()%1025; //Randomizing positions
Y = rand()%969;
SetCursorPos(X , Y );
Sleep (100);
}
return 0; //It's an infinite loop. Pretty simple
}