#include<stdio.h>
#include<stdlib.h>
#include<time.h>

int main()
{
    const int n_numbers = 49;
    int i, n_1, n_2, n_user;
    srand(time(0));
	
    n_1 = rand()%8 + 2;
    n_2 = rand()%8 + 2;
    
    printf("%d * %d = ", n_1, n_2);
    scanf("%d", &n_user);
    if (n_user == n_1*n_2)
       printf("Bingo ! La reponse est correcte !\n");
	else
       printf("Non ! La reponse est %d !\n", n_1*n_2);
	//system("pause");            //decommente si le terminal se ferme
	return 0;
}

