# Python Identity Operator
a=10
b=20
print("is ",a is b)
print("is not", a is not b)

a=10
b=10
print("is ",a is b)
print("is not", a is not b)
