#include <iostream>

void a()
{
	std::cout << "a()!" << std::endl;
}

int main()
{
	return a(), 0;
}