Контрольные задания > The provided code snippet initializes two variables, `a` and `b`, then updates `b`. It then checks if `a` is less than `b` and performs a calculation for `c` based on this condition. Determine the final value of `c`.
```python
a = 14
b = 24
b = -a // 2 * b
if a < b:
c = b - a
else:
c = a - 2 * b
```
Вопрос:
The provided code snippet initializes two variables, `a` and `b`, then updates `b`. It then checks if `a` is less than `b` and performs a calculation for `c` based on this condition. Determine the final value of `c`.
```python
a = 14
b = 24
b = -a // 2 * b
if a < b:
c = b - a
else:
c = a - 2 * b
```