#include <iostream>
using namespace std;

int main()
{
   cout << "What you feel like watching tonight? " << endl;
   cout << "Expected answers are: drama (1),"
        << " comedy (2), adventure (3)" << endl;

   int answer;
   cin >> answer;

   switch (answer) {
      case 1:
         cout << "Suggestion: The Godfather" << endl; break;
      case 2:
         cout << "Suggestion: Home Alone" << endl; break;
      case 3:
         cout << "Suggestion: Indiana Jones and the Raiders"
              << " of the Lost Ark" << endl; break;
      default:
         cout << "No proper genre!" << endl;
   }
}
