Can someone tell me how to fix this please?
public class NestedNumber
{
public static void main(String[] args)
{
for (int i=1; i<=5; i++)
{
System.out.println();
for (int j=1; j<=i; j++)
{
System.out.print(j);
}
}
System.out.println();
}
}