i need to write a program that determines whether a meeting room is in violation of fire law regulations regarding the maximum room capacity and the number of people to attend the meeting. if the number of people is less than or equal to the maximum capacity, the program announces that the meeting cannot be held as planned due to fire regulations and tells how many people must be excluded on order to meet the fire regulations... please help me
#include<iostream.h>
#include<conio.h>
main(){
clrscr();
int a,b,c,d;
cout<<"Enter Room Capacity: "<<endl;
cin>>a;
cout<<"Enter number of People: "<<endl;
cin>>b;
cout<<endl;
if(b<=a){
cout<<"Cannot be held due to fire regulations."<<endl;
}
// i dont know what to do next here... i hate my instructor T_T
getch();
return 0;
}