Answer:
3
8
15
24
35
Step-by-step explanation:
Loop continues until c is >= 10
Before the print statements the following values are present
1st print: c = 3, sum = 3
next, c = 5, sum = 8
c = 7, sum = 15
c = 9, sum = 24
c = 11, sum = 35
Now at the top of the loop c is greater that 10 so the program ends.