Przypisz tę samą wartość do 2 zmiennych jednocześnie Python

a = b = 100

print(a)
# 100

print(b)
# 100
Zealous Zebra