package com.ecorp;

import java.time.Instant;

public class TemperatureReporter {

    /**
     * Simulate an API to obtain the temperature at a given instant
     * @param instant
     * @return
     */

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