98th program input & output

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

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

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

1
2    2
3    3    3
/////////////////////////////////////////////////////////////////////////////////////////////