#include <iostream>

struct t{ const std::size_t value = 10; };

int main(){
  std::cout << t::value << std::endl;
  return 0;
}