#Combine two sets on python with for loop: reverse way in one line with space
#Combine two sets on python with for loop: reverse way in one line with space
set_A= {"Apple", "Orange", "coconut"}
set_B= {"Green","Blue", "Yellow"}
set_B.update(set_A)
for x in set_B:
print(x , end=" ")