#include <iostream>

int main()
{
	unsigned a;
	if (std::cin >> a)
	{
		std::cout << "success" << std::endl;
	}
	else
	{
		std::cout << "error" << std::endl;
	}
}