# Example code 
def my_function(x):
    return x**2

for i in range(5):
    print(my_function(i))

