#!/usr/bin/env python3

def func():
    x += 1
    
def main():
    x = 10

    print("before: x=", x)
    func()
    print("after: x=", x)

main()
