public class Solution {
    public static void main(String[] args) throws Exception {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));

        int a = Integer.parseInt(reader.readLine());
        int b = Integer.parseInt(reader.readLine());

        for (int c = 0; c < a; c++) {
            for (int d = 0; d < b; d++) {
                System.out.print(8 + " ");
            }
            System.out.println();
        }
    }
}
Ответ выдает верный, но задачу не засчитывает. Что не так?