Pažljivo pročitaj kod
# Endpoint budget: 100 ms.
# Three operations the request must do:
# - 50 SSD reads @ 10 µs each = 50 * 0.010 ms
# - 100,000 RAM @ 100 ns each = 100_000 * 0.0001 ms
# - 1 cross-region DB call = 150 ms (US→EU)
ssd_total_ms = 50 * 0.010
ram_total_ms = 100_000 * 0.0001
cross_region_ms = 150
total_ms = ssd_total_ms + ram_total_ms + cross_region_ms
print("over" if total_ms > 100 else "ok")
# What does this print? Type your prediction.Što će program ispisati? Napiši ovdje: