Print the following pattern : If N = 1 1 If N = 2 2 2 2 2 1 2 2 2 2 If N = 3 3 3 3 3 3 3 2 2 2 3 3 2 1 2 3 3 2 2 2 3 3 3 3 3 3 and so on. Test Case 1 Input (stdin) 3 Expected Output 3 3 3 3 3 3 2 2 2 3 3 2 1 2 3 3 2 2 2 3 3 3 3 3 3 Test Case 2 Input (stdin) 2 Expected Output 2 2 2 2 1 2 2 2 2