#include <iostream>
using namespace std;

class Name
{
    int a;
    int b;
};

class Name1
{
    int a;
    int b;
};

template <class T> 
bool isName(T *t) {
	return false; 
}

template <>
bool isName(Name *t) {
	return true; 
}

int main() {
	Name *n; 
	Name1 *n1; 
	cout << "(1): " << isName(n) << endl; 
	cout << "(2): " << isName(n1) << endl; 
	
	// your code goes here
	return 0;
}