#include <iostream>
using namespace std;
int main()
{
int people;
int capacity;
int diff;
cout << "Please enter the number of people attending:";
cin >> people;
cout << "Please enter the maximum number of people who can legally attend:";
cin >> capacity;
if (people < capacity)
diff = capacity - people;
cout << "You may hold the meeting. An additional " << diff << " people may attend." << endl;
else
diff = people - capacity;
cout << "You may not hold the meeting as you are above the room capacity." << endl;
cout << "You must remove " << diff << " people from the room." << endl;
return 0;
}