public class InfiniteLoop { public static void main(String[] args) { int number = 1; // Boshlang'ich son
while (true) { // Cheksiz sikl
System.out.println(number);
number++; // Har bir sikl tugagandan so'ng, sonni oshirish
}
}
}