Netbyzz

#B019

Python :

#CODE = #B019
#same output method different
n={1,2,3}
e={4,5,6}
print("See the code, understand the output \n")

#method 1
print('Method 1 :', n | e)

#method 2
n |= e
print('Method 2 :', n)

input()

Source Code