# The Numbers

starting the challenge im suprised they given us a picture and not a string

<figure><img src="https://2781327171-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FMuMceEGBvWN37BjlZKgv%2Fuploads%2FvXIy8tH2QXuzWswrv0X2%2Fimage.png?alt=media&#x26;token=b7ccb966-9554-4bb9-9dc0-0167e0359587" alt=""><figcaption></figcaption></figure>

i will just ask gpt to take the number from the picture

<figure><img src="https://2781327171-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FMuMceEGBvWN37BjlZKgv%2Fuploads%2FiGaSCZ3ZWDzUXlii6bAQ%2Fimage.png?alt=media&#x26;token=8e1dc64a-55c7-4e6a-88cb-fbaced3b0329" alt=""><figcaption></figcaption></figure>

then we can just convert the number to ascii just imagine 1 as to A so we just need to add 64 to them

```python
list = [16, 9, 3, 15, 3, 20, 6, 20, 8, 5, 14, 21, 13, 2, 5, 18, 19, 13, 1, 19, 15, 14]

for i in list:
    print(chr(i + 64), end='')
```

<figure><img src="https://2781327171-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FMuMceEGBvWN37BjlZKgv%2Fuploads%2F0br5OTN8JRYmGA7rK3vj%2Fimage.png?alt=media&#x26;token=bcd80f32-7334-43dd-a121-3fcba6007512" alt=""><figcaption></figcaption></figure>
