Unlike C or Java, the programming language Python does not separate code with opening and closing braces. It separates code by indentation (a tab) instead. This problem deals with only two Python statements.
- for statement: a statement used for repetition, and it can contain several statements. Once a for statement begins, the statements it repeats must be indented one tab further than the for statement, and the block inside a for statement cannot be empty.
- execute statement: a statement that performs an execution. You can write one per line.
Given several statements in order with no indentation, write a program that prints how many ways there are to indent them.