The code will contain only the main class.
Note that to print two lines using only one command, we will use "\n" command.
The code will be as follows:
public class PrintSeparateLines {
public static void main (String[]args)
{
System.out.println("CS" + "\n" + "140");
}
}
The output of this code will be:
CS
140