DynamoDB - with AWS SDK
Given this Python retry snippet for DynamoDB, what will be the output if the first two attempts raise ProvisionedThroughputExceededException and the third succeeds?
```python
retry_count = 0
while retry_count < 3:
try:
# DynamoDB call here
print('Success')
break
except ProvisionedThroughputExceededException:
print(f'Retry {retry_count}')
retry_count += 1
```
