When I use the second cin, the command line just sits there with the blinking cursor and doesn't allow any typing, if I put a getchar(); after the first cin, it works. package is a char, and month is a string.
1 2 3 4 5
cout << "Choose package A, B, or C: ";
cin >> package;
getchar();
cout << "What month is it (all lower case): ";
getline(cin, month);