var a : int = 0x7fffffff;
try {
	print(a);
	print(++a);
}
catch(e : System.OverflowException) {
	print(e.Message);
}
