How to print the logs in new line

How to print the logs in new line: since data is coming along with output “3” (32020-11-09 )

need to print as
The totalname of sales executives are: 3

2020-11-09 13:05:49.678 DEBUG testcase.CompanyLookup                   - 16: print("The totalname of sales executives are:" + tsales)
The totalname of sales executices are:32020-11-09 13:05:49.679 INFO  c.k.katalon.core.main.TestCaseExecutor   - END Test Cases/API_Testing/Company

@gsp Generally, just add toString() to an Integer or Object to use the string functions and use the println function to add a new line after printing:

println("The totalname of sales executives are: " + tsales.toString());

or you can try using a new-line symbol \n if you don’t have access to the println function:

print("The totalname of sales executives are: " + tsales + "\n");

LOL figured it out !! it was println :smiley: thanks