#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main(){
    int a, b, ab, i;
	srand(time(NULL));
	do{ a = rand() % 11; }
	while(a == 0);
    cout << "FIRST = " << a << endl;
    srand(time(NULL) * time(NULL));
	do{ b = rand() % 11; }
	while(b == 0);
    cout << "SECOND = " << b << endl;
	cin >> i;
	ab = a * b;
	if(i == ab)
	cout << "The answer is correct";
	else cout << "The answer is incorrect" << endl << "Correct answer: " << ab;
    return 0;
}