#include <iostream>

int main()
{
	char cc[10];
	decltype(2 - sizeof(cc)) b = -1;
	std::cout << b << '\n';
}
