I've tried different formatting, thinking that the issue is that the check is looking for a specific format but without luck. This includes putting the comment symbol in the first column, including space, no space or tabs between the symbol and "System..." and everything else that I could think of without any change.
package com.codegym.task.task01.task0108;
/*
2 + 3 = 5
*/
public class Solution {
public static void main(String[] args) {
int a = 3, b = 2;
// System.out.print("two");
System.out.print(b);
System.out.print(" plus ");
// System.out.print(" minus ");
System.out.print(a);
// System.out.print("three");
System.out.print(" is equal to ");
// System.out.print(" equals ");
// System.out.print("five");
System.out.print(a + b);
}
}