#include <iostream>
using namespace std;

template<int SIZE>
struct MyClass{
    MyClass(int a, int b){}
};

class X{
    MyClass<10> mcTen;
    X() : mcTen(1, 5) {
    }
};

int main() {
	// your code goes here
	return 0;
}