x = 251

def fun1():
    x = 17
    fun2()

def fun2():
    print(x)

def main():
    fun1()

main()
