0 / 60 seg.

What does the following Java code output?

import java.util.HashMap;
import java.util.Map;
public class Main {
    public static void main(String[] args) {
        Map<String, Integer> stock = new HashMap<>();
        stock.put("Apples", 50);
        stock.put("Oranges", 75);
        stock.put("Apples", 60); // Updating the value for "Apples"
        System.out.println(stock.get("Apples"));
    }
}