#include <iostream>
using namespace std;
struct Test {
  constexpr static int x = 1;
};
int test(const Test& t) {
  return t.x; 
}
int main() {
	Test x;
	cout << test(x);
	return 0;
}