#include <iostream>
#include <cstdlib>
#include <ctime>

using namespace std;

void game()
{
	cout<<"test ";
	int i1 = rand() % 101;
	int i2 = rand() % 101;
	while(i2 == i1)
		i2 = rand() % 101;
	cout<<i1<<"  "<<i2<<'\n';
}


int main()
{
    srand(time(nullptr));
    for(int i = 0; i < 100; ++i)
        game();
}
