Answer:
Replace the comment with:
cout<<100 + rand() % 49<<endl;
cout<<100 + rand() % 49<<endl;
Step-by-step explanation:
To generate random number from min to max, we make of the following syntax:
min + rand()%(max - min)
In this case:


So, we have:
100 + rand()%(149 - 100)
100 + rand()%49
To print the statements, make use of:
cout<<100 + rand() % 49<<endl;
cout<<100 + rand() % 49<<endl;