println does two things: it prints your message, and then it moves to the next line.
Sometimes you only want the first part.
print prints the message and leaves the cursor exactly where it is, so whatever you print next
continues on the same line.
Write a snippet of code—not a function—that prints CS 124 without moving to the next line
afterward.
Your output should be those six characters and nothing else—in particular, it should not end
with a newline.