You are counting the lines in a file. Then you add a line. Then you display the new count. Then you add up the old counts.
Code:
$ echo "one
> two
> three" > file
$ cat file
one
two
three
$ cat file | wc -l
3
$ print "extra total line that the above wc missed somehow" >> file | more file | wc -l
4