# -*- coding: utf-8 -*-
# fcntest1.py

def fcn(x):
    y = x
    x = 5
    return y*y

x = 3
print(fcn(x))
print(x)
#print(y) # error