import java.math.BigInteger;

public class Forever {
  public static void main(String args[]) {
    BigInteger n=BigInteger.ONE;
    while (n.compareTo(BigInteger.ZERO) > 0) {
      n = n.add(BigInteger.ONE);
    }
  }
}
