Welcome to my Website!

///Name: Ilana Levy
///Period: 5
///Program Name: Ten Times
///File Name: tenTimes.java
///Date Finished: 9/25/2015

public class tenTimes
{
        public static void main( String[] args )
        {
                
                for (int number = 1 ; number <=10;  )
                {
                        System.out.println( number + "Ilana is much cooler." );
                        number++;
                }
        }
}