#include <iostream>
using namespace std;

struct foo { static const int size = 3; };

template<int N>
struct experiment { enum { val = N }; };

int main() 
{
    experiment<foo::size> b;
	// your code goes here
	return 0;
}