Use a logical OR to write a more concise equivalent of the following code:
if(saleAmount >= 300)
cout << "Delivery available" << endl;
else
if(areaCode == LOCAL_CODE)
cout << "Delivery available" << endl;