PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#"Accessories" copy pasted from the problem
print(*(ord(c) for c in 'Аccessories'))
#"Accessories" retyped with keyboard
print(*(ord(c) for c in 'Accessories'))
#left have the weird A
print('Аccessories' == 'Accessories')
print('А' == 'A')
print(ord('А'), ord('A'))
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run