b = 10 c = 0 while b!=5: c = c+b print("_c = ",c) b = b-1 print("_b = ",b) print("C = ",c)