What will the following code output?
a,b,c=3,5,6 b,c,a=a+1,b+2,c+3 print(a,” ”,b,” ”,c)
निम्नलिखित कोड आउटपुट क्या होगा?