a = [1, 2, 3]
b = 123
c = 'ala ma kota'
d = 123.13113
d = 'kfidf'

print(id(a))
print(id(b))
print(id(c))
print(id(d))