I made the minimum required changes to the fields by reducing each value by 1. Now all the numbers fit the type but it still doesn't pass.
Original code
package en.codegym.task.pro.task09.task0901;
/*
Integer literals
*/
public class Solution {
public byte b = 128;
public short s = 32768;
public int i = 1_234_567_890L;
public long l = 2_345_678_900;
}
package en.codegym.task.pro.task09.task0901;
/*
Integer literals
*/
public class Solution {
public byte b = 127;
public short s = 32767;
public int i = 1_234_567_889;
public long l = 2_345_678_900L;
}