C++程序  |  8行  |  103 B

int bar() {
  int result = 0;
  for (int i = 0; i<5566; ++i) {
    result += 1;
  }
  return result;
}