Consider the small raw data file and program shown below. What is the value of Count after the fourth record is read?

data work.newnums;
infile numbers;
input Tens 1-2;
Count +Tens;
run;

1---+----10
10
20
.
40
50

A. Missing
B. 0
C. 30
D. 70