int x = 1000000001;
float y = x;
int z = (int) y;
System.out.println( "x =" + x);
System.out.println( "y =" + y);
System.out.println( "z =" + z);