Design a flowchart for a program that will read SALES from each record, print each sales amount, and print the number of records read.

n=0

while read sales {
n++
print n,sales
}
print n