package com.satan;

import java.time.Instant;

public class PowerLevelReporter {

    /**
     * Simulate an API to obtain the powerLevel of a fight at a given instant
     * @param instant
     * @return
     */

    public static long retrievePowerLevelAt(Instant instant){
        return Math.abs(instant.hashCode())%9001;
    }
}
