public static void Main()
private static void createSquares(int[] arr, string ch)
for(int x = 1; x <= arr[0]; x++)
for(int y = 1; y <= arr[0]; y++)
if(x == 1 || x == arr[0])
if(y == 1 || y == arr[0])
for(int x = 1; x <= arr[1]; x++)
for(int y = 1; y <= arr[1]; y++)
if(x == 1 || x == arr[1])
if(y == 1 || y == arr[1])