// ordering between 1 and 100 apples, using OR
#include <iostream>
using namespace std;

int main ()
{
  int numApples;   // initialize variable for number of apples

  // Obtain number of apples to order from user
  cout << "How many apples would you like? ";
  cin >> numApples;

  if (numApples<=0 || numApples>100)
     // otherwise, reject the order
     cout << "I cannot fill your order.\n";
  else
     // if 0<numApples<=100, confirm the order
     cout << "Your " << numApples << " apples have been ordered\n";

  return 0;
}