picoctf/156/decode.py

6 lines
108 B
Python

#!/usr/bin/env python3
from sys import stdin
for line in stdin:
i = chr(int(line))
print(i, end='')