x1 = 7 y1 = 7 x2 = 'Welcome' y2 = 'Welcome' x3 = [1,2,3] y3 = [1,2,3] print(x1 is not y1) print(x2 is y2) print(x3 is y3)