a = 1 b = 2 c = 3 while a <= 10: if a < b: a *= b c += 5 elif c < b: continue else: a += 5 print(a)