Toggle navigation
Discord
YouTube
Facebook
Instagram
english
english
українська
Algotester 4.7
Build 712
2025-09-07
Log In
Contact Us
College
Sponsors
Donate
Sources
PyPy (Python 3.6 with GCC 7.4)
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")