class ForLoops
{
public static Void main ()
(1..5).each |i|
(1..i).each |j|
Env.cur.out.print ("*")
}
Env.cur.out.printLine ("")