Run ID:94176
提交时间:2024-10-19 20:38:27
a = input() if ord(a) >= 97 and ord(a) <= 97+26: print("Lower Letter") elif ord(a) >= 65 and ord(a) <= 65+26: print("Upper Letter") elif ord(a)>=ord('0') and ord(a)<=ord('9'): print("Digital") else: print("other")