var a : float = 1.0;
try {
	while(a < Infinity)
		print(a *= 10);
}
catch(e : System.OverflowException) {
	print(e.Message);
}
