Toggle navigation
YouTube
Facebook
Telegram
english
english
українська
Algotester 4.3
Build 496
2024-10-17
Log In
Contact Us
College
Sponsors
Donate
Sources
PyPy
ch = input() if "a" <= ch <= "z": print(ord(ch)- ord("a")+1) elif "A" <= ch <= "Z": print(ord(ch)- ord("A")+1) elif "0" <= ch <= "9": print("digit") else: print("weird symbol")