///Name: Ilana Levy
///Period: 5
///Program Name: Counting Machine
///File Name: countingMachine.java
///Date Finished: 9/25/2015
import java.util.Scanner;
public class countingMachine
{
public static void main( String[] args )
{
Scanner keyboard = new Scanner( System.in );
int imput, count;
System.out.print( "Count to: " );
imput = keyboard.nextInt();
for ( count = 1 ; count <= imput ; count = count + 1 )
System.out.print( count + " " );
}
}