Input : Enter how many line you need to make pyramid = 4
Output :-
2
3 4
4 5 6
5 6 7 8
/////////////////////////////////////////////////////////////////////////////////////////////
Input : Enter how many line you need to make pyramid = 5
Output :-
2
3 4
4 5 6
5 6 7 8
6 7 8 9 10
/////////////////////////////////////////////////////////////////////////////////////////////
Input : Enter how many line you need to make pyramid = 3
Output :-
2
3 4
4 5 6
/////////////////////////////////////////////////////////////////////////////////////////////