count=1; do { System.out.println("Count value was "+count); count++; if (count>100){ break; } }while (count!=200);