class work
{
public void compute()
{
int a,b,i,j;
for(i=1;i<=5;i=i+1)
{
for(j=1;j<=i;j=j+1)
{
System.out.print(“ “+j);
}
System.out.println();
}
}
}