class BiggerDebt { // This program is a solution to the first activity // in Hour 2. public static void main(String[] arguments) { int debt = 446000000; debt = debt * 3; System.out.println("Three days' worth of debt is $" + debt); } }