/*
Pattern
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15
*/
import java.util.*;
import java.lang.*;
import java.io.*;
// The main method must be in a class named "Main".
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int k = 1 ;
for(int i=1 ; i<=n ; i++){
for(int j = 1 ; j<=i ; j++){
System.out.print(k + " ");
k++;
}
System.out.println();
}
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: