Input : Enter how many line you need to make pyramid = 4
Output :-
4 4 4 4
3 3 3
2 2
1
/////////////////////////////////////////////////////////////////////////////////////////////
Input : Enter how many line you need to make pyramid = 5
Output :-
5 5 5 5 5
4 4 4 4
3 3 3
2 2
1
/////////////////////////////////////////////////////////////////////////////////////////////
Input : Enter how many line you need to make pyramid = 3
Output :-
3 3 3
2 2
1
/////////////////////////////////////////////////////////////////////////////////////////////