Its working and there's no errors when I chose run button instead of verify;
is there any wrong with this?
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(b);
System.out.print(" plus ");
System.out.print(a);
System.out.print(" is equal to ");
System.out.print(a + b); // "2 plus 3 is equal to 5"
}
}