I am uncommenting the lines 14 & 15 for the expected results... but while verification it is breaching condition of not changing the code.... please help
package com.codegym.task.task01.task0115;
/*
Uh... Happy New Year!
*/
public class Solution {
public static void main(String[] args) {
// String s = "Happy";
// System.out.println("New Year");
// System.out.println("Happy New");
// System.out.println("Year");
System.out.print("Happy New");
System.out.println("Year");
// System.out.println(s);
// System.out.print("Happy New!");
// System.out.print(" ");
// System.out.println("Year");
}
}