def calculate_bill(kwh_used):
    # calculate and return a final electric bill based on number of kwh_used

    pass # replace this line and start your code here

if __name__ == "__main__":
    # Testing: insert your test cases here
    print("Example test case: 250 kwh_used expected bill: __")
    print(calculate_bill(250))
