var total = 0

for (var i = 4; i < 30; ++i) {
  for (var j = 0; j < 10; ++j) {
    total += 1
  }
}

assert_equal(100, total);
