Concept Flow - Nested subroutine calls
Start main
Call subroutine A
subroutine A starts
Call subroutine B
subroutine B starts
subroutine B ends
Return to subroutine A
subroutine A ends
Return to main
Program ends
The main program calls subroutine A, which calls subroutine B. Each subroutine runs and returns control back to its caller in order.