What does the following loop do? 
val = 0
total = 0 
while (val < 10):
 val = val + 1
 total = total + val
print(total)
Prints the numbers backwards from 10 to 1.
Prints the sum of the numbers from 1 to 10.
Finds the average of the numbers between 1 and 10.
Prints the numbers from 1 to 10.