#include <stdio.h>
#include <stdlib.h>// for rand and srand functions
#include <time.h> // for time function
int main()
{
// 1. Generate two random singledigit integers
srand(time(0));
int number1 = rand() % 10;
int number2 = rand() % 10;
printf("The first number is %d\n",number1);
printf("The second number is %d\n",number2);
return 0;
}