0 / 60 seg.

How many times does this loop print "exterminate"?

for (int i = 44; i > 40; i--) {
    System.out.println("exterminate");
}