import java.utilRandom;

public class 22 {
    private static final Random random = new Random();

    public static void main(String[] args) {
        System.out.println("Welcome to day 22!");
        System.out.println("Calculating...");

        int randomNumber = (int) (24 * random.nextDouble()) + 1;
        System.out.printf("Your lucky advent day is: %d", randomNumber + "!");

        int coolNumber = 1337;
    }
}

