# `skystart` is the entry point for a Sky Script.
# Edit it to implement your own function.
def skystart(**kwargs):
# Example code:
# total = float(kwargs["Total"])
# risk = float(kwargs["Risk"])
# risk_adjusted_total = total * (1.0 + risk)
# return {"Risk Adjusted Total": risk_adjusted_total}
pass