public static void main(String[] args) {
    Red red = new Red();
    new Red();

 }

public static class Red {
    public Red() {
        System.out.println("Red");
    }
}