import java.io.*;
class nmp_66_M1_3{
public static void main(String[] args) throws Exception{
int batas = 0; int x = 0;
DataInputStream dis = new
DataInputStream(System.in);
System.out.print(”Loop maximal : “);
batas = Integer.parseInt(dis .readLine());
System.out.println(”Output : “);
while(x <= batas){
System.out.print(x + ” “);
x = x + 1;
}
System.out.println();
}
}


