// ordering between 1 and 100 apples, using AND
#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)
     // if 0<numApples<=100, confirm the order
     cout << "Your " << numApples << " apples have been ordered\n";
  else
     // otherwise, reject the order
     cout << "I cannot fill your order.\n";

  return 0;
}