import java.io.*;

// javac more_less_equal.java
public class more_less_equal
{
public static void main(String args[])throws IOException
{

InputStreamReader isr = new InputStreamReader(System.in);
BufferedReader br = new BufferedReader(isr);
String str = "";
try{
System.out.print("Type numbers more than 10 only: ");
str = br.readLine();
if(str !="")
{
System.out.println(str);
int i = Integer.parseInt(str);
int r = i ;
System.out.println("you entered : " + i);
for(i = 0; i < 15 ; i++)
{
if (i >= 0 & i <= 5)
{
System.out.println(" round in 0 - 5 cycle + "
+ i + " : reverse " + r--);
}
if (i >= 6 & i <= 10)
{
System.out.println(" round in 6 - 10 cycle + "
+ i + " : reverse " + r-- );
}
}//end of loop
} //end if
}//try
catch(NumberFormatException e) { System.out.println("data was blank");}
}//end of main
}//end of clas]

import java.io.*;

// javac more_less_equal_b.java
public class more_less_equal_b
{
public static void main(String args[])throws IOException
{

InputStreamReader isr = new InputStreamReader(System.in);
BufferedReader br = new BufferedReader(isr);

System.out.print("Type numbers more than 10 only: ");
String str = "";
try
{
str = br.readLine();
if(str !="")
{
System.out.println(str);
int i = Integer.parseInt(str);
System.out.println("you entered : " + i);
for(i = 0; i < 15 ; i++)
{
if (i >= 0 && i <= 5){
System.out.println(" round in 0 - 5 cycle + " + i );}
if (i >= 6 & i <= 10){
System.out.println(" round in 6 - 10 cycle + " + i );}
}//end for
}//end if
}//end try
catch(NumberFormatException e) { System.out.println("data was blank");}
}//end main
}//end class