#include <iostream>
using namespace std;

void func(bool) {
	cout << "bool" << endl;
}
template <class T>
void func(T) = delete;
int main() {
	func(0);
	func(false);
	return 0;
}