picoctf/156/decode.py

6 lines
108 B
Python
Raw Normal View History

2022-05-17 13:36:43 +02:00
#!/usr/bin/env python3
from sys import stdin
for line in stdin:
i = chr(int(line))
print(i, end='')