Write the pseudocode for a program that uses a single while loop to print the numbers from 20 to 25 and from 40 to 45. your loop will have at least one nested "if" statement that will determine when the numbers should be printed.
If X >= 20 Then
If X <= 25 Then Print X
End If
If X>=40 Then
If X <=45 Then Print X
End If