Help
package com.codegym.task.task04.task0436;
/*
Drawing a rectangle
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
System.out.println("8");//Prompt for input
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
int n =Integer.parseInt(bf.readLine());
int m =Integer.parseInt(bf.readLine());
for (int x =0;x<n;x++){
System.out.println("8");
}
for(int y = 0; y < m; y++){
System.out.println("8");
}
//write your code here
}
}