#include <iostream>

using namespace std;

template<typename T>
class Size{
    public:
        Size& operator()()const;
};

template<typename T>
Size<T>& Size<T>::operator()()const{
    return (*this);
}

int main() {
	Size<int> s;
    s();
	return 0;
}