/**
 * Build a for loop to count
 */

public class For
{
    public static void main(String[ ] args)
    {
        int max;
        if (args.length == 0)                         //if no cmd line args
            max = 100;                                //  max = 100
        else                                          //otherwise
            max = Integer.parseInt(args[0]);          //  max = arg entered

        for (int numb = 1; numb <= max; numb++)       //create a for loop
        {
            System.out.println(numb);
        }
    }
}