package com.codegym.task.task04.task0436; /* Drawing a rectangle */ import java.io.*; public class Solution { public static void main(String[] args) throws Exception { //write your code here BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); String v1 = reader.readLine(); String v2 = reader.readLine(); int c1 = Integer.parseInt(v1); int c2 = Integer.parseInt(v2); String c = "8"; for(int b = 1; b <= c1; b++);{ for(int a = 1; a <= c2; a++){ System.out.print(c); } System.out.println(); } } }