#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
char maxLines;
cout<< "How many lines will you play";
cin >> maxLines;
switch (maxLines)
{
case 1:
cout << 1 + rand() % 100;
break;
case 2:
cout << 1 + rand() % 100;
cout << 1 + rand() % 100;
break;
case 3:
cout << 1 + rand() % 100;
cout << 1 + rand() % 100;
cout << 1 + rand() % 100;
break;
case 4:
cout << 1 + rand() % 100;
cout << 1 + rand() % 100;
cout << 1 + rand() % 100;
cout << 1 + rand() % 100;
break;
case 5:
cout << 1 + rand() % 100;
cout << 1 + rand() % 100;
cout << 1 + rand() % 100;
cout << 1 + rand() % 100;
cout << 1 + rand() % 100;
break;
}
}