# Michael Gousie
# COMP 335  Fall 2025
# fun.py
#
# Fun with scope.

def main():
    x = 5

    def fun():
        x = x + 10
        print (x)

    fun()
    print (x)

main()
