public class Count { public static void main(String[] args) { for(long i = 1; ;i++) System.out.println(i); } }