document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int people,hats;
  7.  
  8. while(cin>>people>>hats)
  9. {
  10. if(people==hats)
  11. {
  12. cout<<hats<<endl;
  13. }
  14. else
  15. {
  16. cout<<hats+1<<endl;
  17. }
  18. }
  19. return 0;
  20. }
');