Write a function called increment_counter that increments a counter variable every time it is called. You can test your code with the following:
print(counter) # 0
increment_counter()
print(counter) # 1
increment_counter()
print(counter) # 2
counter = 100
increment_counter()
print(counter) # 101