nwerc-082 2016-11-19 10:42:12 +00:00
rodzic 2ec2ac57d2
commit 3605f3204f
1 zmienionych plików z 5 dodań i 0 usunięć

5
C.py Normal file
Wyświetl plik

@ -0,0 +1,5 @@
from __future__ import print_function
import sys
P = sys.stdin.readline().rstrip()
N = 26-len(set(P))
print(N if N != 0 else "impossible")