/home/chloe/ASDV-Java/Assignments/lab13_ChloeFontenot/src/lab13_chloefontenot/Bug1.java
package lab13_chloefontenot;

public class Bug1 {

    public static void main(String[] args)
    {
        int count = 1;
        while (count < 100) {
            System.out.println("count: " + count);
            count *= 2;
        }
    }
    
}