public class Solution { public static void main(String[] args) { print("Java is easy to learn!"); print("Java opens many opportunities!"); } public static void print(String s) { } } After public static void print(String s) { .... i tried .... 1> write.print(s*s); 2> write.print(s+s); 3> return (s); 4> return(s+s); hi, I have tried the above 4 ways to get an output. I'm sure it's incorrect. I could not understand how to print the two lines without System.out.println Please guide me. Thank you.