public class CountingUp {
    public static void main(String[] args) {
        int counter = 0; // initialize the variable outside the loop
        while (true) {
            System.out.println(counter);
            counter = counter + 1; // increment our counter after printing
        }
    }
}