import java.lang.reflect.*;
 
class Golf
{
    public static void main (String[] args) throws java.lang.Exception
    {
        Field value = Integer.class.getDeclaredField("value");      
        value.setAccessible(true);
        Integer victim = 3;
        value.setInt(victim, Integer.MIN_VALUE);
 
        for (Integer x = 0; x < 3; x++)
            System.out.println(x);
    }
}