I tried it out by commenting a line . But still my output cant be varied without disturbuing the System.out.print
package com.codegym.task.task01.task0108;
/*
2 plus 3 is equal to 5
*/
public class Solution {
public static void main(String[] args)
{
String s = "23";
int a = 3, b = 2;
String two = "2";
String five = "5";
String four = "four";
String three = "3";
System.out.print("two");//// 2 plus 3 is equal to 5
System.out.print(" plus ");
System.out.print(s);
System.out.print(b);
System.out.print(" plus ");
System.out.print("three");
System.out.print(a);
System.out.print(" is equal to ");
System.out.print("five");
System.out.print(a + b);
}
}