#include "iostream"
#include <stdlib.h>
#include <ctime>
using namespace std;
int main(){
srand(time(0));
cout << 7 + rand() % 11 << endl;
system("pause");
return 0;
}
#include "iostream"
#include <stdlib.h>
#include <ctime>
using namespace std;
int main(){
srand(time(0));
cout << 7 + rand() % 11 << endl;
system("pause");
return 0;
}