# Create your own basics file with some basic math
# Basics exercise: https://[Log in to view URL]

# Add a variable named with a number value


# Add a function named over_hundred that accepts an argument named data
"""
As the name implies we just want to know how much over a hundred this is.
this work my be usefully over and over again so we capture the process in a function with an argument
Find the difference from 100 and retune the number.
"""


# Add an if statement. 
"""
# If the number is greater than 100 then we will do some work
# Pass the number to the over_hundred function
# print the return value
# Else print "No work to be done"
"""

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: