4.2 Lesson Practice

Answer:
5
10
Explanation:
The first time the loop is entered, c is 0, then 5 gets added and 5 gets printed.
Next time the loop is entered, c is 5, then 5 gets added and 10 gets printed.
Third time the loop is not entered because c<10 is not true anymore.
Why would you not simply try this out on a python environment?