Please help me, i got the problem with this task!
package com.codegym.task.task01.task0108;
/*
2 + 3 = 5
*/
public class Solution {
public static void main(String[] args) {
String s = "23";
int a = 3, b = 2;
String four = "four";
String three = "3";
// System.out.print("two");
System.out.print(" plus ");
System.out.print(s);
//System.out.print(b);
System.out.print(" plus ");
//System.out.print("three");//delete
System.out.print(a);
System.out.print(" is equal to ");//2 plus 3 is equal to 5
//System.out.print("five");
//System.out.print(a + b);
}
}