public class JavaApplication60 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
int a = 100;
while(a == 160){
System.out.println("ok1");
a--;
}
int b = 100;
do{
System.out.println("ok2");
b--;
}while(b == 60);
}
}