Помогите
package com.javarush.task.task04.task0436;
import java.util.Scanner;
/*
Рисуем прямоугольник
*/
public class Solution {
public static void main(String[] args) throws Exception {
Scanner scan = new Scanner(System.in);
int m = scan.nextInt();
int n = scan.nextInt();
for (int i = 1; i <= n; i++){
for (int l = 1; l <= m - 1; l++ ){
System.out.print(8);
}
System.out.println(8);
}
}
}