Of course you are logged in. perhaps you cannot see it. consider two examples:
echo -n "This is my Input" | wc -c
16
because -n to avoid input, but
echo "This is my Input" | wc -c
17
Look at this example, also look at a new line.

How to see a new line?
echo "This is my Input" | od -c
od dump
-c ASCII
od
