Concept Flow - Console.WriteLine and Write methods
Start Program
Call Console.Write
Print text WITHOUT new line
Call Console.WriteLine
Print text WITH new line
Program continues or ends
The program starts, calls Console.Write to print text without moving to a new line, then calls Console.WriteLine to print text and move to the next line.