#include "stack.h"

uint64_t sum_compressed_lengths(std::vector<int> s, int m) {
  // Your solution here
  return 19; // Not always the right answer :(
}
