Someone can tell me what's wrong :/
package pl.codegym.task.task04.task0436;
/*
Rysowanie prostokąta
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
//tutaj wpisz swój kod
BufferedReader key1 = new BufferedReader(new InputStreamReader(System.in));
BufferedReader key2 = new BufferedReader(new InputStreamReader(System.in));
String wy1 = key1.readLine();
String wy2 = key2.readLine();
int m = Integer.parseInt(wy1);
int n = Integer.parseInt(wy2);
for(int i = 1; i <= m; i++)
{ System.out.println("");
for(int c = 1; c <= n; c++){
System.out.print("8");} }
}
}