Source Code
s = str(input())
s = list(s.lower())
tr = True
for i in "atypical":
    if i in s:
        s[s.index(i)] = 'A'
    else:
        tr = False

if tr:
    print("Yes")
else:
    print("No")
Copy
We Love Atypical AbdelH2O
Python 3
20 ms
4.1 MB
Accepted