using System; using static System.Console; class main{ public static void Main(){ //int i=int.MaxValue/10*9; int i=1; while(i+1>i) {i++;} Write("my max int = {0}\n",i); } }