package com.java.patterns; import java.util.Scanner; /* Write the program to print the following pattern * * * * * * * * * * * * * * * * * * * * * * * * * */ public class Pattern25 { public static void main(String args[] ) throws Exception { Scanner scanner = new Scanner(System.in); int N = Integer.parseInt(scanner.nextLine()); int iSpace = 0; int k = 0; for(int i=0;i