111th program input & output

Input : Enter how many line you need to make pyramid = 4
Output :-

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

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

3    4    5
2    3
1
/////////////////////////////////////////////////////////////////////////////////////////////