2023-07-01 11:58:00 -04:00
|
|
|
import java.math.BigInteger;
|
|
|
|
|
|
2023-12-16 21:33:55 -08:00
|
|
|
public class Count {
|
|
|
|
|
public static void main(String[] args) {
|
2023-07-01 11:58:00 -04:00
|
|
|
for(BigInteger i = BigInteger.ONE; ;i = i.add(BigInteger.ONE)) System.out.println(i);
|
|
|
|
|
}
|
|
|
|
|
}
|