#include <iostream>

int main() {
	int x(0);
	std::cin.exceptions(~std::ios::goodbit);
	try{
		std::cin >> x;
	} catch (std::exception &e){
		std::cout<<e.what() << std::endl;
	}
	return 0;
}