One door in and one door out

To understand structured programming, you need to think in terms of a section of program code that has only one entry point and one exit point.

It is very important that there cannot be multiple entry points or multiple exit points. 

There must be only one way into the section of code and one way out of the section of code.