What is output by the following code?
C = 1
sum = 0
while (c 4 10):
C=C+2
sum = sum + c
print (sum)
