public class Solution { public static void main(String[] args) throws Exception { readText(); rectangle(); } public static void readText() throws IOException { BufferedReader read = new BufferedReader(new InputStreamReader(System.in)); int m = Integer.parseInt(read.readLine()); int n = Integer.parseInt(read.readLine()); } public static void rectangle(){ for (int i = 0; i < m; i++) { for (int j = 0; j < n; j++) { System.out.print(8); } System.out.println(); } } } rectangle () method does not see the values of the variables "m" and "n", which are entered in the readText () method, how to fix it?