/* Place your JavaScript in this file */

import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;

public class Main {
    public static void main(String[] args) {
        try {
            // Load the image
            BufferedImage image = ImageIO.read(new File("https://photos.app.goo.gl/hQECPcngkiFsXs877"));

            // Process or display the image as needed
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}