def my_func(): a = 10 print("a:{}".format(a)) print("b:{}".format(b)) b = int(input()) my_func() print("b:{}".format(b)) print("a:{}".format(a))