#include int main() { int index; for(index=0;index<5;index++) { if(index<4) { if(index==3) cout<<"index is 3"<<"\n"; else cout<<"index is less than 3"<<"\n"; } else cout<<"index is greater than 3"<<"\n"; } return 0; }