// Input a month, print the season using && (and) #include using namespace std; int main() { int month; cout<<"Enter the number of a month:"; cin>>month; if (month==1 || month ==2 || month==12) cout<<"Winter\n"; else if (month>=3 && month <=5) cout<<"Spring\n"; else if (month >=6 && month<=8) cout<<"Summer\n"; else if (month>=9 && month<=11) cout<<"Fall\n"; else cout<