101th program input & output

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

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

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

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