You can hand System.out.println more than just text.
Give it an int and it prints whatever number that variable is holding at the moment—which
is far more useful than printing a message that never changes.
Assuming an int variable named value has been declared and initialized, write a snippet of
code—not a function—that prints value on a line by itself.
Don't print any other text, and don't modify value.