#include using namespace std; int main (void) { int sun(-3), coast(4), park(10); if( (sun < 0) or (coast = 18) ) // note assignment (=) operator used! cout << "spring break!" << endl; else cout << "good skiing!" << endl; cout << "coast is now " << coast << endl; }