#!/usr/bin/python3

def f():
    print("in the f x is " +x)
    x="in the sub"

x="this is global"
f()
