# # First attempt to modify the parameter's value # def main(): x=10 modify(x) print("The value of x is",x) def modify(x): x=x+20 print("Trying to change the value of x to ",x) main()