The while statement, example 3 (1)

# program with a while loop
n = 40
while n < 20:
  print n,
  n = n+1
print "The value of n after the loop is:", n

What does this program print?