
def count10():
  for i in range(1, 11):
    print(i)

# if someone runs: python3 main_program.py
#  there will be a variable __name__ with the value '__main__'
# if they do
#  import main_program
#  in their python program, there is not __name__ == '__main__'
# So, put stuff in this if test to "run the program"
# And everything else is functions
if __name__ == '__main__':
  count10()
