The first requirement clearly says print each word with its own print function.
But the second requirement asks us to put "This" and "is" together
So , one requirement will always stay failed
package en.codegym.java.core.level01.task03;
public class Solution
{
public static void main(String[] args)
{
System.out.print("I");
System.out.print(" learn");
System.out.println(" Java.");
System.out.print("This ");
System.out.println("is interesting!");
// Add a space and print the second word of the first line
// Add a space and print the third word of the first line
// Print the first word of the second line
// Add a space and print the second word of the second line
}
}