$motto = "There is always another way"; $assumption = "There is a way"; $result = combine($motto, $assumption); print $result; #### while (1) { $result = combine($result, $assumption); print $result; } #### There are three ways There are four ways There are five ways ...