Python Variable assigning single value to multiple variable


Program
a=b=c=10 print(a) print(b) print(c)
Input
Output