11.06.2025

chr / ord

print(chr(87))
print(ord("W"))
for i in range(0,100):
    print(chr(i),i)